mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 07:15:54 +01:00
add a global delayed user env in process.delayedEnv, #16508
This commit is contained in:
16
src/typings/node.processEnv-ext.d.ts
vendored
Normal file
16
src/typings/node.processEnv-ext.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
declare namespace NodeJS {
|
||||
|
||||
export interface Process {
|
||||
|
||||
/**
|
||||
* VS Code specific extension of a delayed
|
||||
* process enviroment.
|
||||
*/
|
||||
delayedEnv: Thenable<typeof process.env> | undefined;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user