Skip to content

Commit

Permalink
argument names, #48527
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Apr 24, 2018
1 parent 8aa6fe9 commit 36c5c31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5048,11 +5048,11 @@ declare module 'vscode' {
* Copy files or folders. Implementing this function is optional but it will speedup
* the copy operation.
*
* @param uri The existing file or folder.
* @param target The target location.
* @param source The existing file or folder.
* @param destination The destination location.
* @param token A cancellation token.
*/
copy?(uri: Uri, target: Uri, options: FileOptions, token: CancellationToken): FileStat | Thenable<FileStat>;
copy?(source: Uri, destination: Uri, options: FileOptions, token: CancellationToken): FileStat | Thenable<FileStat>;
}

/**
Expand Down

0 comments on commit 36c5c31

Please sign in to comment.