- Service Worker

- Indexdb
This commit is contained in:
Paolo Arena
2019-02-02 20:13:06 +01:00
parent 484439efe0
commit 3c6b2c7bef
41 changed files with 762 additions and 755 deletions

View File

@@ -1,5 +1,5 @@
export interface ITodo {
_id?: number,
_id?: string,
userId: string
category?: string
descr?: string,
@@ -10,8 +10,8 @@ export interface ITodo {
completed_at: any,
expiring_at: any,
enableExpiring?: boolean,
id_prev?: number,
id_next?: number,
id_prev?: string,
id_next?: string,
modified?: boolean,
pos?: number,
progress?: number