UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

8 lines (7 loc) 312 B
import type { IGraphic, IGraphicRender, IRenderService } from '../../../interface'; export declare abstract class AbstractGraphicRender implements IGraphicRender { type: string; numberType: number; abstract draw(graphic: IGraphic, renderService: IRenderService): void; abstract reInit(): void; }