UNPKG

dynamodb-toolbox

Version:

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

11 lines (10 loc) 288 B
import type { AtLeastOnce, Schema, SchemaProps } from '../types/index.js'; interface TupleElementProps extends SchemaProps { required?: AtLeastOnce; hidden?: false; savedAs?: undefined; } export type TupleElementSchema = Schema & { props: TupleElementProps; }; export {};