Files
webapp-conversation/types/log.ts
2024-01-29 13:00:14 +08:00

17 lines
256 B
TypeScript

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
}