7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
|
export function getEnv(): {
|
||
|
VSCODE_REF: string | undefined;
|
||
|
PRERELEASE_VERSION: string | undefined;
|
||
|
} {
|
||
|
return process.env as any;
|
||
|
}
|