global.d.ts 279 B

12345678910111213
  1. /**
  2. * @file 全局的一些变量定义:含国际化、主题...
  3. */
  4. export declare const GLOBAL: {
  5. /** 全局语言 */
  6. locale: string;
  7. };
  8. /**
  9. * 全局变量设置
  10. * @param key
  11. * @param value
  12. */
  13. export declare function setGlobal(datum: Record<string, any>): void;