dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
11 lines (10 loc) • 312 B
TypeScript
import type { ErrorBlueprint } from '../../errors/blueprint.js';
type DuplicateSavedAsErrorBlueprint = ErrorBlueprint<{
code: 'schema.map.duplicateSavedAs';
hasPath: true;
payload: {
savedAs: string;
};
}>;
export type MapSchemaErrorBlueprint = DuplicateSavedAsErrorBlueprint;
export {};