Interface PostCreationSaveableWidget

An interface describing saveable widgets that are created by the Saveable.apply function. The original close function is reassigned to a locally-defined Symbol

interface PostCreationSaveableWidget {
    [close](): void;
    closeWithSaving(options?): Promise<void>;
    closeWithoutSaving(doRevert?): Promise<void>;
}

Hierarchy (view full)

Methods