File size: 482 Bytes
02eac4b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * LeRobot Arena Robotics Client - Main Module
 * 
 * TypeScript/JavaScript client for robotics control and monitoring
 */

// Export core classes
export { RoboticsClientCore } from './core.js';
export { RoboticsProducer } from './producer.js';
export { RoboticsConsumer } from './consumer.js';

// Export all types
export * from './types.js';

// Export factory functions for convenience
export { createProducerClient, createConsumerClient, createClient } from './factory.js';