1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00
openstamanager/resources/js/globals.d.ts

22 lines
602 B
TypeScript
Raw Normal View History

/* eslint-disable no-var,vars-on-top */
// noinspection ES6ConvertVarToLetConst
import type cash from 'cash-dom';
import type Mithril from 'mithril';
import type router from 'ziggy-js';
import {OpenSTAManager} from './types/modules';
import type {__ as translator} from './utils';
declare global {
2022-01-10 21:42:15 +01:00
let importPath: string;
let translations: Record<string, string>;
let modules: Record<string, OpenSTAManager.Modules>;
const route: typeof router;
var $: typeof cash;
var m: typeof Mithril;
// eslint-disable-next-line @typescript-eslint/naming-convention
var __: typeof translator;
}