zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
14 lines • 423 B
TypeScript
import { Readable, type ReadableOptions } from "node:stream";
export declare class ZBOSSWriter extends Readable {
private bytesToWrite;
constructor(opts?: ReadableOptions);
private writeBytes;
writeByte(byte: number): void;
writeAvailable(): boolean;
/**
* If there is anything to send, send to the port.
*/
writeFlush(): void;
_read(): void;
}
//# sourceMappingURL=writer.d.ts.map