UNPKG

zrender

Version:

A lightweight graphic library providing 2d draw for Apache ECharts

20 lines (19 loc) 511 B
import Path, { PathProps } from '../Path'; export declare class RectShape { r?: number | number[]; x: number; y: number; width: number; height: number; } export interface RectProps extends PathProps { shape?: Partial<RectShape>; } declare class Rect extends Path<RectProps> { shape: RectShape; constructor(opts?: RectProps); getDefaultShape(): RectShape; buildPath(ctx: CanvasRenderingContext2D, shape: RectShape): void; isZeroArea(): boolean; } export default Rect;