uni-ticket-system/node_modules/zrender/lib/graphic/shape/Rect.d.ts
2023-12-05 10:11:10 +08:00

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;