Interface ApplyWorkspaceEditParams

The parameters passed via an apply workspace edit request.

interface ApplyWorkspaceEditParams {
    edit: WorkspaceEdit;
    label?: string;
    metadata?: WorkspaceEditMetadata;
}

Properties

Properties

The edits to apply.

label?: string

An optional label of the workspace edit. This label is presented in the user interface for example on an undo stack to undo the workspace edit.

Additional data about the edit.

3.18.0