mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
migrate proposed API onto new events
This commit is contained in:
@@ -914,10 +914,11 @@ export interface FileSystemEvents {
|
||||
changed: UriComponents[];
|
||||
deleted: UriComponents[];
|
||||
}
|
||||
|
||||
export interface ExtHostFileSystemEventServiceShape {
|
||||
$onFileEvent(events: FileSystemEvents): void;
|
||||
$onFileRename(oldUri: UriComponents, newUri: UriComponents): void;
|
||||
$onWillRename(oldUri: UriComponents, newUri: UriComponents): Promise<any>;
|
||||
$onWillRunFileOperation(operation: files.FileOperation, target: UriComponents, source: UriComponents | undefined): Promise<any>;
|
||||
$onDidRunFileOperation(operation: files.FileOperation, target: UriComponents, source: UriComponents | undefined): void;
|
||||
}
|
||||
|
||||
export interface ObjectIdentifier {
|
||||
|
||||
Reference in New Issue
Block a user