UNPKG

dynamodb-toolbox

Version:

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

9 lines (8 loc) 273 B
import type { BinarySchemaProps } from './types.js'; export declare class BinarySchema<PROPS extends BinarySchemaProps = BinarySchemaProps> { type: 'binary'; props: PROPS; constructor(props: PROPS); get checked(): boolean; check(path?: string): void; }