Skip to content

Commit b646671

Browse files
committed
add jsdoc comment, fix microsoft#42631
1 parent 8242b36 commit b646671

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/vs/vscode.proposed.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,13 @@ declare module 'vscode' {
614614

615615
//#region joh: https://github.com/Microsoft/vscode/issues/10659
616616

617+
/**
618+
* A workspace edit is a collection of textual and files changes for
619+
* multiple resources and documents. Use the [applyEdit](#workspace.applyEdit)-function
620+
* to apply a workspace edit. Note that all changes are applied in the same order in which
621+
* they have been added and that invalid sequences like 'delete file a' -> 'insert text in
622+
* file a' causes failure of the operation.
623+
*/
617624
export interface WorkspaceEdit {
618625

619626
/**

0 commit comments

Comments
 (0)