UNPKG

lupdo

Version:

Database Abstraction Layer for Node js

11 lines (10 loc) 320 B
import BaseTypedBinding from './base-typed-binding'; export class NumericTypedBinding extends BaseTypedBinding { constructor(type, value, options) { super(type, value, options); this.type = type; this.value = value; this.options = options; } } export default NumericTypedBinding;