webserial-core
Version:
A strongly-typed, event-driven, abstract TypeScript library for the Web Serial API with custom parsers, command queue, handshake validation, and auto-reconnect.
11 lines (10 loc) • 425 B
TypeScript
export * from './core/AbstractSerialDevice.js';
export * from './core/SerialEventEmitter.js';
export * from './core/SerialRegistry.js';
export * from './errors/index.js';
export * from './parsers/index.js';
export * from './queue/CommandQueue.js';
export * from './types/index.js';
export * from './adapters/web-usb/index.js';
export * from './adapters/web-bluetooth/index.js';
export * from './adapters/websocket/index.js';