forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue-shims.d.ts
32 lines (29 loc) · 1010 Bytes
/
vue-shims.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
declare module 'virtual:*' {
import { Component } from 'vue'
const src: Component
export default src
}
declare module 'virtual:icons/*' {
// eslint-disable-next-line no-duplicate-imports
import { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}
declare module '~icons/*' {
// eslint-disable-next-line no-duplicate-imports
import { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}
declare module '~icons/cy/*' {
// eslint-disable-next-line no-duplicate-imports
import { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}
declare module '~icons/mdi/*' {
// eslint-disable-next-line no-duplicate-imports
import { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}