UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

7 lines (6 loc) 289 B
import type { Schema } from '../../../../../schema/index.js'; import type { SchemaCondition } from '../../condition.js'; export declare const transformBetweenCondition: (schema: Schema, condition: Extract<SchemaCondition, { between: unknown; value?: never; }>) => SchemaCondition;