mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
#100346 merge single resource
This commit is contained in:
@@ -181,12 +181,12 @@ class ManualSyncTask implements IManualSyncTask {
|
||||
]));
|
||||
}
|
||||
|
||||
accept(uri: URI, content: string): Promise<[SyncResource, ISyncResourcePreview][]> {
|
||||
return this.channel.call('accept', [uri, content]);
|
||||
accept(resource: URI, content: string): Promise<[SyncResource, ISyncResourcePreview][]> {
|
||||
return this.channel.call('accept', [resource, content]);
|
||||
}
|
||||
|
||||
merge(): Promise<[SyncResource, ISyncResourcePreview][]> {
|
||||
return this.channel.call('merge');
|
||||
merge(resource: URI): Promise<[SyncResource, ISyncResourcePreview][]> {
|
||||
return this.channel.call('merge', [resource]);
|
||||
}
|
||||
|
||||
pull(): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user