export interface Highlight { identifier: string entryIdentifier: string highlightedText: string note: string | null textOffset: number textLength: number textPrefix: string textSuffix: string color: string createdAt: string } export interface HighlightWithEntryContext extends Highlight { entryTitle: string | null feedTitle: string | null }