1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

JS: Converted http service to ts

This commit is contained in:
Dan Brown
2024-07-18 15:13:14 +01:00
parent 634b0aaa07
commit fb87fb5750
6 changed files with 234 additions and 244 deletions

View File

@ -1,9 +1,12 @@
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;
}
}