UNPKG

dynamodb-toolbox

Version:

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

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