Sorting fixed

- added tables Skills, Sectors,
This commit is contained in:
Paolo Arena
2021-10-05 00:19:17 +02:00
parent 1a9a81a1ba
commit 9121569809
22 changed files with 1323 additions and 1064 deletions

View File

@@ -238,6 +238,9 @@ export interface IGlobalState {
TIMER_STATE: number
URL_RITORNA: string
URL_RESTORE: string
levels: ILevel[],
skills: ISkill[],
sectors: ISector[],
}
export interface IMenuList {
@@ -528,3 +531,22 @@ export interface IPagination {
page: number,
rowsPerPage: number // specifying this determines pagination is server-side
}
export interface ISkill {
descr: string
idSector: string
icon?: string
img?: string
}
export interface ISector {
descr: string
icon?: string
img?: string
}
export interface ILevel {
_id: string
descr: string
years_of_exp: number
}