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