Interface LayerInit<W>

A layer initialization object to create a new Layer for a LayeredContainer.

interface LayerInit<W> {
    canExpand?: boolean;
    child: W;
    name?: string;
}

Type Parameters

Properties

canExpand?: boolean
child: W
name?: string