UNPKG

lupdo

Version:

Database Abstraction Layer for Node js

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