make readDirectory return string/stat-tuples, #47475

This commit is contained in:
Johannes Rieken
2018-04-11 12:32:56 +02:00
parent 1d143981b4
commit 1b33eb37d5
6 changed files with 25 additions and 20 deletions

View File

@@ -572,7 +572,7 @@ export interface ExtHostFileSystemShape {
$move(handle: number, resource: UriComponents, target: UriComponents): TPromise<IStat>;
$mkdir(handle: number, resource: UriComponents): TPromise<IStat>;
$readdir(handle: number, resource: UriComponents): TPromise<[UriComponents, IStat][]>;
$readdir(handle: number, resource: UriComponents): TPromise<[string, IStat][]>;
$delete(handle: number, resource: UriComponents): TPromise<void>;