1 | import URI from '../common/uri';
|
2 | import { MaybePromise, SelectionService } from '../common';
|
3 | import { EnvVariablesServer } from '../common/env-variables';
|
4 | export declare class UserWorkingDirectoryProvider {
|
5 | protected readonly selectionService: SelectionService;
|
6 | protected readonly envVariables: EnvVariablesServer;
|
7 | |
8 |
|
9 |
|
10 |
|
11 |
|
12 | getUserWorkingDir(): Promise<URI>;
|
13 | protected getFromSelection(): MaybePromise<URI | undefined>;
|
14 | protected getFromUserHome(): MaybePromise<URI>;
|
15 | protected ensureIsDirectory(uri?: URI): MaybePromise<URI | undefined>;
|
16 | }
|
17 |
|
\ | No newline at end of file |