debt - remove TPromise from ExtHostFileSystemEventServiceShape#$onWillRename

This commit is contained in:
Johannes Rieken
2018-09-06 12:24:50 +02:00
parent 77c9ffa5b8
commit 8ba421c56a
4 changed files with 6 additions and 7 deletions

View File

@@ -713,7 +713,7 @@ export interface FileSystemEvents {
export interface ExtHostFileSystemEventServiceShape {
$onFileEvent(events: FileSystemEvents): void;
$onFileRename(oldUri: UriComponents, newUri: UriComponents): void;
$onWillRename(oldUri: UriComponents, newUri: UriComponents): TPromise<any>;
$onWillRename(oldUri: UriComponents, newUri: UriComponents): Thenable<any>;
}
export interface ObjectIdentifier {