You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="nody-greeter-types" />
|
|
|
|
declare module '*.svg' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent
|
|
export default component
|
|
}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
export interface GlobalComponents {
|
|
AppIcon: typeof import('./src/components/app/AppIcon.vue')['default']
|
|
}
|
|
}
|
|
|
|
export {}
|