]>
BookStack Code Mirror - bookstack/blob - resources/js/global.d.ts
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Lexical: Added cell width fetching, Created custom row node
[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
}