]>
BookStack Code Mirror - bookstack/blob - resources/js/global.d.ts
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1f216b7a53c0238c15783df339bf16cd28deec3c
[bookstack]
/
resources
/
js
/
global.d.ts
1
import {ComponentStore} from "./services/components";
2
import {EventManager} from "./services/events";
3
import {HttpManager} from "./services/http";
4
5
declare global {
6
interface Window {
7
$components: ComponentStore,
8
$events: EventManager,
9
$http: HttpManager,
10
baseUrl: (path: string) => string;
11
}
12
}