8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
|
|
declare namespace NodeJS {
|
||
|
|
interface ProcessEnv {
|
||
|
|
NODE_ENV: string
|
||
|
|
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined
|
||
|
|
VUE_ROUTER_BASE: string | undefined
|
||
|
|
}
|
||
|
|
}
|