mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
8 lines
343 B
TypeScript
8 lines
343 B
TypeScript
// load this module before other modules which require these global variables
|
|
import { loadSuml } from './loader.ts';
|
|
import type { Config } from '../locale/config.ts';
|
|
import type { Translations } from '../locale/translations.ts';
|
|
|
|
global.config = loadSuml('config') as Config;
|
|
global.translations = loadSuml('translations') as Translations;
|