@visactor/vrender-core
Version:
```typescript import { xxx } from '@visactor/vrender-core'; ```
14 lines (13 loc) • 512 B
TypeScript
import type { ILayerService } from './interface/core';
import type { IGraphicUtil, ITransformUtil } from './interface/core';
import type { IGlobal, IGraphicService, IRenderService } from './interface';
export declare class Application {
global: IGlobal;
graphicUtil: IGraphicUtil;
graphicService: IGraphicService;
get renderService(): IRenderService;
private _renderService;
transformUtil: ITransformUtil;
layerService: ILayerService;
}
export declare const application: Application;