mirror of https://github.com/halo-dev/halo-admin
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
/// <reference types="histoire" />
|
||
|
|
||
|
declare module "*.vue" {
|
||
|
import type { DefineComponent } from "vue";
|
||
|
// eslint-disable-next-line
|
||
|
const component: DefineComponent<{}, {}, any>;
|
||
|
export default component;
|
||
|
}
|