UNPKG

@visactor/vrender-kits

Version:

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

9 lines (8 loc) 460 B
import { BaseRender } from '@visactor/vrender-core'; import type { IGraphicAttribute, IGraphic, IPickParams, IGraphicRender } from '@visactor/vrender-core'; import type { IPoint } from '@visactor/vutils'; export declare abstract class Base3dPicker<T extends IGraphic<Partial<IGraphicAttribute>>> extends BaseRender<T> { canvasRenderer: IGraphicRender; themeType: string; contains(graphic: IGraphic, point: IPoint, params?: IPickParams): boolean; }