summaryrefslogtreecommitdiffstats
path: root/src/types/Feed.ts
blob: d7221c452452969e38e0791ecd56ed4b1327f86f (plain)
1
2
3
4
5
6
7
8
9
10
export type Feed = {
  folderId?: number;
  unreadCount: number;
  url: string;
  title?: string;
  autoDiscover?: boolean;
  faviconLink?: string;
  id?: number;
  pinned: boolean;
}