UNPKG

@easyquery/core

Version:

EasyQuery.JS core modules

15 lines (14 loc) 484 B
import { EqContext } from "./context"; import { WidgetGroup } from "../types/widget_group"; export declare class Widget { protected context: EqContext; widgetType: string; protected group: WidgetGroup; constructor(socketElement: HTMLElement); init(context: EqContext, options?: any): void; getContext(): EqContext; refresh(groups?: WidgetGroup): void; protected refreshCore(): void; startLoading(): void; finishLoading(): void; }