UNPKG

matterbridge-roborock-vacuum-plugin

Version:
18 lines 433 B
export class HeaderMessage { version; seq; nonce; timestamp; protocol; constructor(version, seq, nonce, timestamp, protocol) { this.version = version; this.seq = seq; this.nonce = nonce; this.timestamp = timestamp; this.protocol = protocol; } isForProtocol(protocol) { return this.protocol === protocol; } } //# sourceMappingURL=headerMessage.js.map