26 lines
627 B
TypeScript
26 lines
627 B
TypeScript
declare module '*.vue' {
|
|
import { defineComponent } from 'vue';
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
export default Component;
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface Process {
|
|
env: ProcessEnv;
|
|
}
|
|
interface ProcessEnv {
|
|
/**
|
|
* By default, there are two modes in Vite:
|
|
*
|
|
* * `development` is used by vite and vite serve
|
|
* * `production` is used by vite build
|
|
*
|
|
* You can overwrite the default mode used for a command by passing the --mode option flag.
|
|
*
|
|
*/
|
|
readonly NODE_ENV: 'development' | 'production';
|
|
}
|
|
}
|
|
|
|
declare let process: NodeJS.Process;
|