UNPKG

dynamodb-toolbox

Version:

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

7 lines (6 loc) 553 B
import type { FormatterErrorBlueprints } from './format/errors.js'; import type { FromZodSchemaErrorBlueprints } from './fromZodSchema/errors.js'; import type { ParserErrorBlueprints } from './parse/errors.js'; import type { ConditionParserErrorBlueprints } from './parseCondition/errors.js'; import type { SchemaActionUtilsErrorBlueprints } from './utils/errors.js'; export type ActionErrorBlueprints = FormatterErrorBlueprints | ParserErrorBlueprints | ConditionParserErrorBlueprints | SchemaActionUtilsErrorBlueprints | FromZodSchemaErrorBlueprints;