dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
8 lines (7 loc) • 386 B
TypeScript
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>;
}