mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 17:25:39 +01:00
6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
export function getEnv(): {
|
|
VSCODE_REF: string | undefined;
|
|
PRERELEASE_VERSION: string | undefined;
|
|
} {
|
|
return process.env as any;
|
|
}
|