mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-07 01:10:03 +08:00
20 lines
388 B
TypeScript
20 lines
388 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production';
|
|
ENV_TYPE?: string;
|
|
[key: string]: any;
|
|
}
|
|
}
|
|
|
|
declare module global {
|
|
interface Window {}
|
|
}
|