UNPKG

dynamodb-toolbox

Version:

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

8 lines (7 loc) 202 B
import type { Schema, SchemaProps } from '../types/index.js'; export interface MapSchemaProps extends SchemaProps { strict?: boolean; } export interface MapAttributes { [key: string]: Schema; }