UNPKG

lupdo

Version:

Database Abstraction Layer for Node js

10 lines (9 loc) 477 B
import { LengthType, LengthTypeBindingOptions, LengthValidPrimitive } from '../types/type-bindings'; import BaseTypedBinding from './base-typed-binding'; export declare class LengthTypedBinding extends BaseTypedBinding { type: LengthType; value: LengthValidPrimitive; options?: LengthTypeBindingOptions | undefined; constructor(type: LengthType, value: LengthValidPrimitive, options?: LengthTypeBindingOptions | undefined); } export default LengthTypedBinding;