dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
11 lines (10 loc) • 894 B
TypeScript
import type { ActionErrorBlueprints } from './actions/errors.js';
import type { AnyOfSchemaErrorBlueprint } from './anyOf/errors.js';
import type { ItemSchemaErrorBlueprints } from './item/errors.js';
import type { ListSchemaErrorBlueprint } from './list/errors.js';
import type { MapSchemaErrorBlueprint } from './map/errors.js';
import type { PrimitiveSchemaErrorBlueprint } from './primitive/errors.js';
import type { RecordSchemaErrorBlueprint } from './record/errors.js';
import type { SetSchemaErrorBlueprint } from './set/errors.js';
import type { SharedSchemaErrorBlueprint } from './utils/errors.js';
export type SchemaErrorBlueprints = PrimitiveSchemaErrorBlueprint | SetSchemaErrorBlueprint | ListSchemaErrorBlueprint | MapSchemaErrorBlueprint | RecordSchemaErrorBlueprint | AnyOfSchemaErrorBlueprint | SharedSchemaErrorBlueprint | ItemSchemaErrorBlueprints | ActionErrorBlueprints;