-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathshims.d.ts
More file actions
22 lines (18 loc) · 604 Bytes
/
Copy pathshims.d.ts
File metadata and controls
22 lines (18 loc) · 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
declare module '*.svg' {
const content: string;
export default content;
}
// Vue components can be imported with .vue extension
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
// External components cannot be imported with .vue extension
declare module '@nextcloud/vue/dist/Components/*.js' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare module 'vue-virtual-scroller';
declare module 'plyr/dist/plyr.mjs';