@aptpod/data-viz-visual-parts-sdk
Version:
Visual Parts SDK for VM2M Data Visualizer
16 lines (15 loc) • 469 B
TypeScript
import type { Response } from '../type/response';
import type { Plugin } from '../plugin';
export declare type LoadParams = {
scriptURL: string;
};
export declare type VisualParts = {};
/** @internal */
export declare class Dispatcher {
private readonly scriptLoader;
private plugins;
constructor();
readonly dispose: () => void;
readonly load: ({ scriptURL, }: LoadParams) => Promise<Response<void>>;
readonly getPlugins: () => Plugin[];
}