20 lines
511 B
TypeScript
20 lines
511 B
TypeScript
|
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;
|