Delete file operation

interface DeleteFile {
    annotationId?: string;
    kind: "delete";
    options?: DeleteFileOptions;
    uri: string;
}

Hierarchy

  • ResourceOperation
    • DeleteFile

Properties

annotationId?: string

An optional annotation identifier describing the operation.

3.16.0

kind: "delete"

A delete

Delete options.

uri: string

The file to delete.