dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
6 lines (5 loc) • 510 B
TypeScript
import type { Finder, SubSchema } from '../../../../../schema/actions/finder/index.js';
import type { Deduper } from '../../../../../schema/actions/utils/deduper.js';
import type { SchemaCondition } from '../../condition.js';
export declare const getComparedSubSchemas: (schemaFinder: Finder, comparedValue: unknown, transform: boolean | undefined) => SubSchema[] | undefined;
export declare const joinDedupedConditions: (dedupedConditions: Deduper<SchemaCondition>, attributePath: string) => SchemaCondition;