Spaces:
Sleeping
Sleeping
File size: 480 Bytes
8aedc84 51f51c3 8aedc84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/**
* RobotHub TransportServer Video Client - Main Module
*
* TypeScript/JavaScript client for video streaming and monitoring
*/
// Export core classes
export { VideoClientCore } from './core.js';
export { VideoProducer } from './producer.js';
export { VideoConsumer } from './consumer.js';
// Export all types
export * from './types.js';
// Export factory functions for convenience
export { createProducerClient, createConsumerClient, createClient } from './factory.js';
|