/** * Remote-serial-over-WebSocket entry point. * * import {WebSocketSerialTransport} * from 'react-native-web-serial-api/websocket'; * * Client side: `WebSocketSerialTransport` connects an app to a remote serial * port. Server side: {@link attachBridge} pipes a WebSocket to a serial port, * and {@link SimulatedDeviceToSerialLike} lets that "serial port" be an in-memory * {@link SimulatedDevice} simulator (used by `testing/exposeSimulatedDevice`). The * wire protocol is in {@link ./protocol}; the bridge core in {@link ./bridge}. */ export type { BridgeOptions, SerialLike, WsLike } from './bridge'; export { attachBridge } from './bridge'; export type { CommandMessage, CommandName, ControlMessage, EventMessage, InputSignals, LineCoding, Parity, PortInfo, ResponseMessage, } from './protocol'; export { portInfoFromDevice, SimulatedDeviceToSerialLike, } from './serial-device-bridge'; export type { WebSocketCtor, WebSocketLike, WebSocketSerialOptions, } from './WebSocketSerialTransport'; export { WebSocketSerialTransport } from './WebSocketSerialTransport'; //# sourceMappingURL=index.d.ts.map