UNPKG

dynamodb-toolbox

Version:

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

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