plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
17 lines (16 loc) • 425 B
TypeScript
export default SandBox;
declare class SandBox {
/**
*Creates an instance of SandBox.
* @param {{ excludeWords: string[], includeWords: string[] }} params
* @memberof SandBox
*/
constructor(params?: {
excludeWords: string[];
includeWords: string[];
});
excludeWords: string[];
includeWords: string[];
verify(code: any): Function;
compile(code: any): Function;
}