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