1 | import URI from '../../common/uri';
|
2 | import { EnvVariablesServer, EnvVariable } from '../../common/env-variables';
|
3 | export declare class MockEnvVariablesServerImpl implements EnvVariablesServer {
|
4 | protected readonly configDirUri: URI;
|
5 | constructor(configDirUri: URI);
|
6 | getHomeDirUri(): Promise<string>;
|
7 | getDrives(): Promise<string[]>;
|
8 | getConfigDirUri(): Promise<string>;
|
9 | getExecPath(): Promise<string>;
|
10 | getVariables(): Promise<EnvVariable[]>;
|
11 | getValue(key: string): Promise<EnvVariable | undefined>;
|
12 | }
|
13 | //# sourceMappingURL=mock-env-variables-server.d.ts.map |
\ | No newline at end of file |