UNPKG

dynamodb-toolbox

Version:

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

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