Interface SaveableWidget

interface SaveableWidget {
    closeWithSaving(options?): Promise<void>;
    closeWithoutSaving(doRevert?): Promise<void>;
}

Hierarchy (view full)

Methods

  • Parameters

    • Optional doRevert: boolean

      whether the saveable should be reverted before being saved. Defaults to true.

    Returns Promise<void>