]> BookStack Code Mirror - bookstack/blob - resources/js/global.d.ts
Lexical: Linked code block to editor, added button
[bookstack] / resources / js / global.d.ts
1 declare module '*.svg' {
2     const content: string;
3     export default content;
4 }
5
6 declare global {
7     interface Window {
8         $components: {
9             first: (string) => Object,
10         }
11     }
12 }