++ Added "Projects" (step 1)

This commit is contained in:
Paolo Arena
2019-03-22 20:51:42 +01:00
parent 4d32467eb1
commit dbd062636b
12 changed files with 790 additions and 490 deletions

View File

@@ -17,7 +17,7 @@ export interface IProject {
progress?: number
}
export interface IParamProject {
export interface IParamIProject {
categorySel?: string
checkPending?: boolean
id?: string
@@ -37,13 +37,10 @@ export interface IDrag {
}
*/
export interface IProjectState {
export interface IProjectsState {
showtype: number
todos: {}
projs: {}
categories: string[]
// todos_changed: number
reload_fromServer: number
testpao: string
insidePending: boolean
visuLastCompleted: number
}

View File

@@ -7,3 +7,4 @@ export * from './key-value'
export * from './Categories'
export * from './Todos'
export * from './Projects'