Table MySkills

This commit is contained in:
Paolo Arena
2021-10-08 00:38:22 +02:00
parent eb4156fc89
commit 48128235f8
22 changed files with 1250 additions and 1184 deletions

View File

@@ -240,6 +240,7 @@ export interface IGlobalState {
URL_RESTORE: string
levels: ILevel[],
skills: ISkill[],
statusSkills: IStatusSkill[],
sectors: ISector[],
}
@@ -533,20 +534,45 @@ export interface IPagination {
}
export interface ISkill {
_id: number
descr: string
idSector: string
idSector: number[]
icon?: string
img?: string
}
export interface IStatusSkill {
_id: number
descr: string
color: string
theme: string
}
export interface ISector {
_id: number
descr: string
idSector?: number
icon?: string
img?: string
color: string
theme: string
}
export interface ILevel {
_id: string
_id: number
descr: string
color: string
theme: string
years_of_exp: number
}
export interface IMySkill {
_id: number
idSkill: number
idStatusSkill: number[]
NumLevel: number
note: string
date_created?: Date,
date_updated?: Date,
}