11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const component: DefineComponent<object, object, any>
|
|
export default component
|
|
}
|
|
|
|
declare module 'sherlockjs';
|