14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
declare const __ANALYTICS_ID__: string
|
|
|
|
declare module 'virtual:icons/*' {
|
|
import type { FunctionalComponent, SVGAttributes } from 'vue'
|
|
const component: FunctionalComponent<SVGAttributes>
|
|
export default component
|
|
}
|
|
|
|
declare module '~icons/*' {
|
|
import type { FunctionalComponent, SVGAttributes } from 'vue'
|
|
const component: FunctionalComponent<SVGAttributes>
|
|
export default component
|
|
}
|