Popupmenu Todo:

- Show Task Completed
This commit is contained in:
Paolo Arena
2019-03-04 17:28:29 +01:00
parent fa17de24f0
commit 9803c451f9
21 changed files with 942 additions and 1391 deletions

View File

@@ -11,6 +11,7 @@ export interface IConnData {
export interface ICfgServer {
chiave: string
userId: string
valore: string
}
@@ -21,6 +22,12 @@ export interface ITestp1 {
export type StateConnection = 'online' | 'offline'
export interface IConfig {
_id: string,
key?: string,
value: string
}
export interface IGlobalState {
conta: number
wasAlreadySubOnDb: boolean
@@ -38,6 +45,7 @@ export interface IGlobalState {
connData: IConnData
posts: IPost[]
listatodo: ITodoList[]
arrConfig: IConfig[]
}