halo-admin/packages/components/env.d.ts

10 lines
254 B
TypeScript
Raw Normal View History

/// <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;
}