UNPKG

rainbird

Version:

The Rainbird library allows you to access your RainBird Controller.

20 lines 444 B
import { Response } from './Response.js'; export class ProgramZoneStateResponse extends Response { response; _page; constructor(response) { super(); this.response = response; this._page = response[1]; } get type() { return 0xBB; } get page() { return this._page; } toBuffer() { return this.response; } } //# sourceMappingURL=ProgramZoneStateResponse.js.map