lupdo
Version:
Database Abstraction Layer for Node js
15 lines (14 loc) • 498 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LengthTypedBinding = void 0;
const base_typed_binding_1 = require("./base-typed-binding");
class LengthTypedBinding extends base_typed_binding_1.default {
constructor(type, value, options) {
super(type, value, options);
this.type = type;
this.value = value;
this.options = options;
}
}
exports.LengthTypedBinding = LengthTypedBinding;
exports.default = LengthTypedBinding;