UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

13 lines (12 loc) 281 B
import { Widget } from '../widgets/Widget.js'; /** * A layer initialization object to create a new {@link Layer} for a * {@link LayeredContainer}. * * @category Core */ export interface LayerInit<W extends Widget> { child: W; name?: string; canExpand?: boolean; }