browsingHistory.types.ts 236 B

1234567891011121314
  1. export interface BrowsingHistoryItem {
  2. id: number;
  3. paperId: number;
  4. title: string;
  5. authors: string;
  6. units: string;
  7. updateAt: string;
  8. }
  9. export interface BrowsingHistories {
  10. total: number;
  11. items: BrowsingHistoryItem[];
  12. }