UNPKG

dynamodb-toolbox

Version:

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

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