UNPKG

lupdo

Version:

Database Abstraction Layer for Node js

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