Interface CustomEditorModel

interface CustomEditorModel {
    dirty: boolean;
    readonly: boolean;
    resource: URI;
    viewType: string;
    redo(): void;
    revert(options?): Promise<void>;
    saveCustomEditor(options?): Promise<void>;
    saveCustomEditorAs(resource, targetResource, options?): Promise<void>;
    undo(): void;
}

Hierarchy

  • Saveable
  • Disposable
    • CustomEditorModel

Implemented by

Properties

dirty: boolean
readonly: boolean
resource: URI
viewType: string

Methods