geekai/new-ui/projects/admin/env.d.ts
2024-03-13 17:30:24 +08:00

9 lines
312 B
TypeScript

/// <reference types="vite/client" />
declare module "*.vue" {
import { DefineComponent } from "vue";
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare const __AUTH_KEY: string;