mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-29 18:57:59 +08:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
VITE_APP_BASE_API: string
|
|
}
|
|
}
|
|
}
|
|
|
|
// If this file has no import/export statements (i.e. is a script)
|
|
// convert it into a module by adding an empty export statement.
|
|
export {}
|