1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/frontend/src/javascript/models/fablab.ts

31 lines
684 B
TypeScript

export interface IFablab {
plansModule: boolean,
spacesModule: boolean,
walletModule: boolean,
statisticsModule: boolean,
defaultHost: string,
trackingId: string,
adminSysId: number,
baseHostUrl: string,
locale: string,
moment_locale: string,
summernote_locale: string,
fullcalendar_locale: string,
intl_locale: string,
intl_currency: string,
timezone: string,
weekStartingDay: string,
d3DateFormat: string,
uibDateFormat: string,
maxProofOfIdentityFileSize: number,
sessionTours: Array<string>,
translations: {
app: {
shared: {
buttons: Record<string, string>,
messages: Record<string, string>,
}
}
}
}