rainbird
Version:
The Rainbird library allows you to access your RainBird Controller.
18 lines • 391 B
JavaScript
import { Response } from './Response.js';
export class RawResponse extends Response {
response;
constructor(response) {
super();
this.response = response;
}
get type() {
return this.response[0];
}
get page() {
return this.response[1];
}
toBuffer() {
return this.response;
}
}
//# sourceMappingURL=RawResponse.js.map