lupdo
Version:
Database Abstraction Layer for Node js
10 lines (9 loc) • 488 B
TypeScript
import { NumericType, NumericTypeBindingOptions, NumericValidPrimitive } from '../types/type-bindings';
import BaseTypedBinding from './base-typed-binding';
export declare class NumericTypedBinding extends BaseTypedBinding {
type: NumericType;
value: NumericValidPrimitive;
options?: NumericTypeBindingOptions | undefined;
constructor(type: NumericType, value: NumericValidPrimitive, options?: NumericTypeBindingOptions | undefined);
}
export default NumericTypedBinding;