export type LogAnnotation = { content: string account: { id: string name: string email: string } created_at: number } export type Annotation = { id: string authorName: string logAnnotation?: LogAnnotation created_at?: number }