0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-24 20:44:11 +00:00
BookStackApp_BookStack/resources/js/global.d.ts
2024-07-18 15:13:14 +01:00

12 lines
No EOL
334 B
TypeScript

import {ComponentStore} from "./services/components";
import {EventManager} from "./services/events";
import {HttpManager} from "./services/http";
declare global {
interface Window {
$components: ComponentStore,
$events: EventManager,
$http: HttpManager,
baseUrl: (path: string) => string;
}
}