mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-09 10:25:40 +00:00
f41c02cbd7
Extracted functions out of app file during changes to clean up. Altered animation function to use normal css prop names instead of JS CSS prop names.
18 lines
No EOL
531 B
TypeScript
18 lines
No EOL
531 B
TypeScript
import {ComponentStore} from "./services/components";
|
|
import {EventManager} from "./services/events";
|
|
import {HttpManager} from "./services/http";
|
|
import {Translator} from "./services/translations";
|
|
|
|
declare global {
|
|
const __DEV__: boolean;
|
|
|
|
interface Window {
|
|
__DEV__: boolean;
|
|
$components: ComponentStore;
|
|
$events: EventManager;
|
|
$trans: Translator;
|
|
$http: HttpManager;
|
|
baseUrl: (path: string) => string;
|
|
importVersioned: (module: string) => Promise<object>;
|
|
}
|
|
} |