@ngenux/ngage-whiteboarding
Version:
A collaborative whiteboard React component with real-time synchronization
11 lines • 316 B
TypeScript
import React from 'react';
import { ShapeProps } from '@/types';
interface EllipseProps {
shapeProps: ShapeProps;
isSelected: boolean;
onSelect: () => void;
onUpdate: (shape: ShapeProps) => void;
}
export declare const Ellipse: React.FC<EllipseProps>;
export {};
//# sourceMappingURL=Ellipse.d.ts.map