|
3 | 3 |
|
4 | 4 | declare module 'vue' { |
5 | 5 | export interface GlobalComponents { |
6 | | - CarbonSvg: typeof import('./src/components/CarbonSvg.svg') |
7 | | - ComponentA: typeof import('./src/components/ComponentA.vue') |
8 | | - ComponentB: typeof import('./src/components/ComponentB.vue') |
9 | | - ComponentD: typeof import('./src/components/ComponentD.vue') |
10 | | - MarkdownA: typeof import('./src/components/MarkdownA.md') |
11 | | - MarkdownB: typeof import('./src/components/MarkdownB.md') |
12 | | - Recursive: typeof import('./src/components/Recursive.vue') |
13 | | - ComponentC: typeof import('./src/components/component-c.vue') |
14 | | - Book: typeof import('./src/components/book/index.vue') |
15 | | - Avatar: typeof import('./src/components/global/avatar.vue') |
16 | | - UiButton: typeof import('./src/components/ui/button.vue') |
17 | | - UiNestedCheckbox: typeof import('./src/components/ui/nested/checkbox.vue') |
| 6 | + CarbonSvg: typeof import('./src/components/CarbonSvg.svg')['default'] |
| 7 | + ComponentA: typeof import('./src/components/ComponentA.vue')['default'] |
| 8 | + ComponentB: typeof import('./src/components/ComponentB.vue')['default'] |
| 9 | + ComponentD: typeof import('./src/components/ComponentD.vue')['default'] |
| 10 | + MarkdownA: typeof import('./src/components/MarkdownA.md')['default'] |
| 11 | + MarkdownB: typeof import('./src/components/MarkdownB.md')['default'] |
| 12 | + Recursive: typeof import('./src/components/Recursive.vue')['default'] |
| 13 | + ComponentC: typeof import('./src/components/component-c.vue')['default'] |
| 14 | + Book: typeof import('./src/components/book/index.vue')['default'] |
| 15 | + Avatar: typeof import('./src/components/global/avatar.vue')['default'] |
| 16 | + UiButton: typeof import('./src/components/ui/button.vue')['default'] |
| 17 | + UiNestedCheckbox: typeof import('./src/components/ui/nested/checkbox.vue')['default'] |
18 | 18 | } |
19 | 19 | } |
20 | 20 |
|
|
0 commit comments