UNPKG

react-fabric-canvas-designer

Version:

A React-based wrapper for Fabric.js to create interactive and customizable canvas-based designs. This library provides tools for drawing, editing, and managing objects on a canvas with React-friendly APIs.

12 lines 481 B
import { Ellipse } from "fabric"; import { FabricObjectPropertyList } from "../types/WrapperFabricType"; import { WrapperFabric } from "./WrapperFabric"; export declare class EllipseObj extends WrapperFabric { obj: Ellipse; constructor(rectObj: Ellipse); setBackground(background: string): void; setBorderColor(color: string): void; setBorderWidth(width: number): void; getObjectValues(): FabricObjectPropertyList; } //# sourceMappingURL=EllipseObj.d.ts.map