mirror of
https://github.com/kac5a/k5_documents.git
synced 2026-07-29 01:02:34 -04:00
7 lines
393 B
TypeScript
7 lines
393 B
TypeScript
declare var TEXTS: { [key: string]: string }
|
|
declare var COLORS: { [key: string]: string }
|
|
declare var AVAILABLE_JOBS: {job:string, templateGrades: number[], logo?: string}[]
|
|
|
|
export const texts = typeof TEXTS === "undefined" ? {} : TEXTS
|
|
export const colors = typeof COLORS === "undefined" ? {} : COLORS
|
|
export const availableJobs = typeof AVAILABLE_JOBS === "undefined" ? [] : AVAILABLE_JOBS |