16 lines
255 B
TypeScript
16 lines
255 B
TypeScript
|
|
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
|
||
|
|
}
|