UNPKG

dynamodb-toolbox

Version:

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

11 lines (10 loc) 315 B
import type { ErrorBlueprint } from '../../errors/blueprint.js'; type DuplicateSavedAsErrorBlueprint = ErrorBlueprint<{ code: 'schema.item.duplicateSavedAs'; hasPath: true; payload: { savedAs: string; }; }>; export type ItemSchemaErrorBlueprints = DuplicateSavedAsErrorBlueprint; export {};