dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
10 lines (9 loc) • 524 B
TypeScript
import type { SchemaCondition } from '../../condition.js';
import type { ConditionExpression } from '../../types.js';
import type { ExpressionState } from '../types.js';
export declare const expressEqCondition: (condition: Extract<SchemaCondition, {
eq: unknown;
}>, prefix: string | undefined, state: ExpressionState) => ConditionExpression;
export declare const expressNeCondition: (condition: Extract<SchemaCondition, {
ne: unknown;
}>, prefix: string | undefined, state: ExpressionState) => ConditionExpression;