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

JS: Converted come common services to typescript

This commit is contained in:
Dan Brown
2024-07-03 11:00:57 +01:00
parent feca1f0502
commit a8f1160743
9 changed files with 172 additions and 187 deletions

View File

@ -1,12 +1,7 @@
declare module '*.svg' {
const content: string;
export default content;
}
import {ComponentStore} from "./services/components";
declare global {
interface Window {
$components: {
first: (string) => Object,
}
$components: ComponentStore,
}
}