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