@ibsheet/loader
Version:
Dynamically load support module for IBSheet
10 lines (9 loc) • 326 B
TypeScript
import { IBSheetCreateOptions, IBSheetInstance } from './interface';
export declare class IBSheetGlobalStatic {
private _name;
constructor(name?: string);
readonly name: string;
readonly global: any;
setGlobalName(name: string): void;
create(options: IBSheetCreateOptions): Promise<IBSheetInstance>;
}