UNPKG

opendash

Version:

open.DASH data visualization framework

12 lines (11 loc) 439 B
/// <reference types="react" /> 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; }