UNPKG

dynamodb-toolbox

Version:

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

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