We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8242b36 commit b646671Copy full SHA for b646671
1 file changed
src/vs/vscode.proposed.d.ts
@@ -614,6 +614,13 @@ declare module 'vscode' {
614
615
//#region joh: https://github.com/Microsoft/vscode/issues/10659
616
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
+ */
624
export interface WorkspaceEdit {
625
626
/**
0 commit comments