@ngenux/ngage-whiteboarding
Version:
A collaborative whiteboard React component with real-time synchronization
11 lines • 319 B
TypeScript
import React from 'react';
export interface WhiteboardProps {
roomId: string;
isAdmin?: boolean;
allowedUsers?: string[];
userId: string;
transparentBackground?: boolean;
videoStream?: MediaStream;
}
export declare const Whiteboard: React.FC<WhiteboardProps>;
//# sourceMappingURL=index.d.ts.map