9 lines
108 B
TypeScript
9 lines
108 B
TypeScript
|
|
export interface Todo {
|
||
|
|
id: number;
|
||
|
|
content: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Meta {
|
||
|
|
totalCount: number;
|
||
|
|
}
|