1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 23:37:51 +01:00
openstamanager/resources/js/globals.d.ts
2022-01-10 21:42:15 +01:00

20 lines
502 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 type {__ as translator} from './utils';
declare global {
let importPath: string;
const translations: {[key: string]: string};
const route: typeof router;
var $: typeof cash;
var m: typeof Mithril;
// eslint-disable-next-line @typescript-eslint/naming-convention
var __: typeof translator;
}