Interface ILayoutRestorer

A static class that restores the widgets of the application when it reloads.

interface ILayoutRestorer {
    restored: Promise<void>;
    add(widget, name): void;
    restore<T>(tracker, options): Promise<any>;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

restored: Promise<void>

A promise resolved when the layout restorer is ready to receive signals.

Methods