2019-01-14 22:40:30 +01:00
|
|
|
export interface ITodo {
|
|
|
|
|
id?: number,
|
|
|
|
|
userId: string
|
|
|
|
|
descr?: string,
|
|
|
|
|
priority: number,
|
|
|
|
|
completed: boolean,
|
|
|
|
|
created_at: any,
|
|
|
|
|
modify_at: any,
|
2019-01-27 19:09:48 +01:00
|
|
|
expiring_at: any,
|
2019-01-28 03:13:04 +01:00
|
|
|
enableExpiring?: boolean,
|
2019-01-27 19:09:48 +01:00
|
|
|
id_prev?: number,
|
|
|
|
|
id_next?: number,
|
|
|
|
|
modified?: boolean,
|
2019-01-29 00:48:04 +01:00
|
|
|
pos?: number,
|
|
|
|
|
progress?: number
|
2019-01-14 22:40:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ITodosState {
|
|
|
|
|
visuOnlyUncompleted: boolean
|
|
|
|
|
}
|