dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
5 lines (4 loc) • 297 B
TypeScript
import type { SchemaCondition } from '../condition.js';
import type { ConditionExpression } from '../types.js';
import type { ExpressionState } from './types.js';
export declare const expressCondition: (condition: SchemaCondition, prefix?: string, state?: ExpressionState) => ConditionExpression;