@visactor/vrender-core
Version:
## Description
13 lines (12 loc) • 478 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;
renderService: IRenderService;
transformUtil: ITransformUtil;
layerService: ILayerService;
}
export declare const application: Application;