opendash
Version:
open.DASH data visualization framework
16 lines (14 loc) • 390 B
text/typescript
import {
WidgetInterface,
WidgetTypeInterface,
WidgetComponentStateInterface,
} from "..";
export interface WidgetBaseContextInterface {
id: string;
widget: WidgetInterface;
type: WidgetTypeInterface;
fullscreen: boolean;
container: React.MutableRefObject<any>;
state: WidgetComponentStateInterface;
setState: (value: Partial<WidgetComponentStateInterface>) => void;
}