11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
declare module '*.vue' {
|
||
|
import type {DefineComponent} from 'vue'
|
||
|
const vueComponent: DefineComponent<{}, {}, any>
|
||
|
export default vueComponent
|
||
|
}
|
||
|
declare module '*.mjs'
|
||
|
declare module 'dayjs'
|
||
|
|
||
|
|