UNPKG

malwoden

Version:

![alt text](./coverage/badge-lines.svg) ![alt text](./coverage/badge-statements.svg) ![alt text](./coverage/badge-functions.svg) ![alt text](./coverage/badge-branches.svg)

12 lines (11 loc) 347 B
import { WidgetConfig } from "."; import { Widget } from "./widget"; export interface ContainerWidgetState { } /** * An empty widget, used to hold other widgets. */ export declare class ContainerWidget extends Widget<ContainerWidgetState> { constructor(config?: Partial<WidgetConfig<ContainerWidgetState>>); onDraw(): void; }