BookStack/resources/js/global.d.ts
Dan Brown 634b0aaa07
Lexical: Started converting drawio to TS
Converted events service to TS as part of this.
2024-07-18 11:19:11 +01:00

9 lines
218 B
TypeScript

import {ComponentStore} from "./services/components";
import {EventManager} from "./services/events";
declare global {
interface Window {
$components: ComponentStore,
$events: EventManager,
}
}