Rename file operation

interface RenameFile {
    annotationId?: string;
    kind: "rename";
    newUri: string;
    oldUri: string;
    options?: RenameFileOptions;
}

Hierarchy

  • ResourceOperation
    • RenameFile

Properties

annotationId?: string

An optional annotation identifier describing the operation.

3.16.0

kind: "rename"

A rename

newUri: string

The new location.

oldUri: string

The old (existing) location.

Rename options.