fantasia-archive/src/components/models.ts

9 lines
108 B
TypeScript
Raw Normal View History

2021-07-10 04:38:42 +12:00
export interface Todo {
id: number;
content: string;
}
export interface Meta {
totalCount: number;
}