UNPKG

dynamodb-toolbox

Version:

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

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