fantasia-archive/src/components/models.ts
2021-07-09 18:38:42 +02:00

9 lines
108 B
TypeScript

export interface Todo {
id: number;
content: string;
}
export interface Meta {
totalCount: number;
}