aux-dbf
Version:
DBF for price PSM
15 lines • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Row = /** @class */ (function () {
function Row() {
this.value = new Array(Row.Count);
Object.freeze(this.value.length);
}
Row.prototype.Add = function (column, value) {
this.indexColumn = column;
this.value[column] = value;
};
return Row;
}());
exports.Row = Row;
//# sourceMappingURL=Row.js.map