mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
22 lines
596 B
TypeScript
22 lines
596 B
TypeScript
/* 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 './typings';
|
|
import type {__ as translator} from './utils';
|
|
|
|
declare global {
|
|
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;
|
|
}
|