@visactor/vrender-core
Version:
```typescript import { xxx } from '@visactor/vrender-core'; ```
9 lines (8 loc) • 310 B
TypeScript
import type { IGraphicAttribute, IGraphic } from '../graphic';
export type IEllipseAttribute = {
radiusX: number;
radiusY: number;
};
export interface IEllipseGraphicAttribute extends Partial<IGraphicAttribute>, Partial<IEllipseAttribute> {
}
export type IEllipse = IGraphic<IEllipseGraphicAttribute>;