UNPKG

@visactor/vrender-core

Version:

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

8 lines (7 loc) 294 B
import type { IGraphicAttribute, IGraphic } from '../graphic'; export type IIsogonAttribute = { radius: number; edgeNumber: number; }; export type IIsogonGraphicAttribute = Partial<IGraphicAttribute> & Partial<IIsogonAttribute>; export type IIsogon = IGraphic<IIsogonGraphicAttribute>;