UNPKG

@visactor/vrender-core

Version:
9 lines (8 loc) 316 B
import type { IGraphicAttribute, IGraphic } from '../graphic'; export type ICircleAttribute = { radius: number; startAngle: number; endAngle: number; }; export type ICircleGraphicAttribute = Partial<IGraphicAttribute> & Partial<ICircleAttribute>; export type ICircle = IGraphic<ICircleGraphicAttribute>;