@visactor/vrender-core
Version:
## Description
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>;