UNPKG

dynamodb-toolbox

Version:

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

5 lines (4 loc) 412 B
import type { TupleSchema } from '../../../schema/index.js'; import type { ParseAttrValueOptions } from './options.js'; import type { ParserReturn, ParserYield } from './parser.js'; export declare function tupleSchemaParser<OPTIONS extends ParseAttrValueOptions = {}>(schema: TupleSchema, inputValue: unknown, options?: OPTIONS): Generator<ParserYield<TupleSchema, OPTIONS>, ParserReturn<TupleSchema, OPTIONS>>;