UNPKG

lupdo

Version:

Database Abstraction Layer for Node js

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