mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-30 04:33:41 +08:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
declare module '*.svg' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
$components: {
|
|
first: (string) => Object,
|
|
}
|
|
}
|
|
} |