blob: 888e4283ef7dc6adcca97d85392a71794a99c2af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
export interface TimelineEntry {
entryIdentifier: string
feedIdentifier: string
feedTitle: string
customTitle: string | null
entryTitle: string
entryUrl: string
author: string | null
summary: string | null
imageUrl: string | null
publishedAt: string
isRead: boolean
isSaved: boolean
enclosureUrl: string | null
enclosureType: string | null
}
|