workadventure/front/src/define-plugin.d.ts

14 lines
288 B
TypeScript
Raw Normal View History

2022-01-07 01:50:47 +01:00
type LanguageObject = {
[key: string]: string | boolean | LanguageObject;
2022-01-07 01:50:47 +01:00
};
type LanguageFound = {
id: string;
language: string;
country: string;
default: boolean;
};
declare const FALLBACK_LANGUAGE_OBJECT: LanguageObject;
declare const LANGUAGES: LanguageFound[];