mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
334 B
TypeScript
12 lines
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;
|
|
}
|
|
} |