22 lines
423 B
TypeScript
22 lines
423 B
TypeScript
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module '*?inline' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly DEV: boolean;
|
|
readonly PROD: boolean;
|
|
readonly MODE: string;
|
|
readonly BASE_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|