UNPKG

dynamodb-toolbox

Version:

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

8 lines (7 loc) 386 B
import type { Schema } from '../../../schema/index.js'; import { SchemaAction } from '../../../schema/index.js'; import type { FormattedValueJSONSchema } from './formattedValue/index.js'; export declare class JSONSchemer<SCHEMA extends Schema = Schema> extends SchemaAction<SCHEMA> { static actionName: "jsonSchemer"; formattedValueSchema(): FormattedValueJSONSchema<SCHEMA>; }