PronounsPage/server/globals.ts
Valentyne Stigloher 61ecf5025d (ts) migrate
2024-06-26 13:57:06 +02:00

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;