UNPKG

@visactor/vrender-core

Version:

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

11 lines (10 loc) 353 B
import type { IGraphic } from '../graphic'; import type { ICustomPath2D } from '../path'; import type { IRectGraphicAttribute } from './rect'; export type IRect3dGraphicAttribute = Partial<IRectGraphicAttribute> & { length?: number; }; export interface IRect3d extends IGraphic { attribute: IRect3dGraphicAttribute; cache?: ICustomPath2D; }