@ibsheet/loader
Version:
Dynamically load support module for IBSheet
11 lines (10 loc) • 346 B
TypeScript
import { IBChartInstance } from './interface';
export declare class IBChartGlobalStatic {
private _name;
constructor(name?: string);
get name(): string;
get global(): any;
setGlobalName(name: string): void;
create(options: any): Promise<IBChartInstance>;
}
export declare const IBChartGlobalInstance: IBChartGlobalStatic;