mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 21:11:38 +01:00
add id to FileStat and remove resource, make readdir return tuples, sketch up error codes, add todos on the API
This commit is contained in:
@@ -109,7 +109,7 @@ class RemoteFileSystemProvider implements IFileSystemProvider {
|
||||
mkdir(resource: URI): TPromise<void, any> {
|
||||
return this._proxy.$mkdir(this._handle, resource);
|
||||
}
|
||||
readdir(resource: URI): TPromise<IStat[], any> {
|
||||
readdir(resource: URI): TPromise<[URI, IStat][], any> {
|
||||
return this._proxy.$readdir(this._handle, resource);
|
||||
}
|
||||
rmdir(resource: URI): TPromise<void, any> {
|
||||
|
||||
Reference in New Issue
Block a user