17 lines
256 B
TypeScript
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
|
|
}
|