- Table of Disciplines #101

- Insert Facebook bar to the Site #97
This commit is contained in:
Paolo Arena
2019-11-12 21:33:18 +01:00
parent 9c35b5d73a
commit 6c4ebb2ace
19 changed files with 286 additions and 8 deletions

View File

@@ -34,6 +34,25 @@ export interface ISettings {
value_num?: number
}
export interface ITeachUname {
username?: string
}
export interface IDiscipline {
typol_code?: string
order?: number
label?: string
description?: string
linkpage?: string
color?: string
icon?: string
img_small?: string
showinhome?: boolean
showinnewsletter?: boolean
img?: string
teachers?: ITeachUname[]
}
export interface ITestp1 {
contatore: number
mioarray: ICfgServer[]
@@ -76,6 +95,7 @@ export interface IGlobalState {
arrConfig: IConfig[]
lastaction: IAction
settings: ISettings[],
disciplines: IDiscipline[],
}
export interface IMenuList {