@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
15 lines (14 loc) • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.All = void 0;
const VScript = require("vscript");
const _MetadataProcessor = require("./MetadataProcessor");
class All {
constructor(raw) {
this.raw = raw;
}
get requests() {
return new VScript.StronglyTypedTable(new VScript.Table(this.raw.socket, this.raw.full_kwl("requests")), (row, enclosing_table) => new _MetadataProcessor.RequestAsTableRow(row, enclosing_table));
}
}
exports.All = All;