UNPKG

nano-queries

Version:

Simple and powerful database-agnostic query builder (SQL & NoSQL)

7 lines (6 loc) 268 B
import { PrimitiveValue, Value } from '../types'; export declare class PreparedValue implements Value<PrimitiveValue> { protected readonly value: string | number | null; constructor(value: string | number | null); getValue: () => string | number | null; }