Interface ExtractableWidget

A contract for widgets that are extractable to a secondary window.

interface ExtractableWidget {
    isExtractable: boolean;
    secondaryWindow: undefined | Window;
}

Hierarchy

  • Widget
    • ExtractableWidget

Properties

isExtractable: boolean

Set to true to mark the widget to be extractable.

secondaryWindow: undefined | Window

The secondary window that the window was extracted to or undefined if it is not yet extracted.