18 lines
754 B
TypeScript
18 lines
754 B
TypeScript
|
import { DrawAppOptions, DrawAssistant, GraphicDrawAssistant, IDrawApp } from './JlDrawApp';
|
||
|
import { AppConsts, GraphicAppOptions, ICanvasProperties, IGraphicApp, IGraphicScene, IGraphicStorage, IJlCanvas } from './JlGraphicApp';
|
||
|
import { GraphicDataUpdateOperation } from './BasicOperation';
|
||
|
/**
|
||
|
* 实例化图形app
|
||
|
* @param options
|
||
|
* @returns
|
||
|
*/
|
||
|
export declare function newGraphicApp(options: GraphicAppOptions): IGraphicApp;
|
||
|
/**
|
||
|
* 实例化绘图app
|
||
|
* @param options
|
||
|
* @returns
|
||
|
*/
|
||
|
export declare function newDrawApp(options: DrawAppOptions): IDrawApp;
|
||
|
export { AppConsts, GraphicDrawAssistant, GraphicDataUpdateOperation };
|
||
|
export type { DrawAssistant, ICanvasProperties, IDrawApp, IGraphicApp, IGraphicScene, IGraphicStorage, IJlCanvas, };
|