1 | export declare const envVariablesPath = "/services/envs";
|
2 | export declare const EnvVariablesServer: unique symbol;
|
3 | export interface EnvVariablesServer {
|
4 | getExecPath(): Promise<string>;
|
5 | getVariables(): Promise<EnvVariable[]>;
|
6 | getValue(key: string): Promise<EnvVariable | undefined>;
|
7 | getConfigDirUri(): Promise<string>;
|
8 | |
9 |
|
10 |
|
11 | getHomeDirUri(): Promise<string>;
|
12 | |
13 |
|
14 |
|
15 | getDrives(): Promise<string[]>;
|
16 | }
|
17 | export interface EnvVariable {
|
18 | readonly name: string;
|
19 | readonly value: string | undefined;
|
20 | }
|
21 |
|
\ | No newline at end of file |