UNPKG

dynamodb-toolbox

Version:

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

7 lines (6 loc) 357 B
import type { SchemaCondition } from '../../condition.js'; import type { ConditionExpression } from '../../types.js'; import type { ExpressionState } from '../types.js'; export declare const expressBetweenCondition: (condition: Extract<SchemaCondition, { between: unknown; }>, prefix: string | undefined, state: ExpressionState) => ConditionExpression;