7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
export type Observation = {
|
|
id: number
|
|
month: string
|
|
content: string
|
|
createdAt: string
|
|
}
|