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

Lexical: Started converting drawio to TS

Converted events service to TS as part of this.
This commit is contained in:
Dan Brown
2024-07-18 11:19:11 +01:00
parent 5002a89754
commit 634b0aaa07
9 changed files with 142 additions and 112 deletions

View File

@ -1,7 +1,9 @@
import {ComponentStore} from "./services/components";
import {EventManager} from "./services/events";
declare global {
interface Window {
$components: ComponentStore,
$events: EventManager,
}
}