UNPKG

dynamodb-toolbox

Version:

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

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