malwoden
Version:
   
12 lines (11 loc) • 347 B
TypeScript
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;
}