Files
freeplanet/src/model/Todos.ts

16 lines
255 B
TypeScript
Raw Normal View History

export interface ITodo {
id?: number,
userId: string
pos: number,
descr?: string,
priority: number,
completed: boolean,
created_at: any,
modify_at: any,
expiring_at: any
}
export interface ITodosState {
visuOnlyUncompleted: boolean
}