dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
11 lines (10 loc) • 370 B
TypeScript
import type { ErrorBlueprint } from '../../../errors/blueprint.js';
type InvalidExpressionAttributePathErrorBlueprint = ErrorBlueprint<{
code: 'actions.invalidExpressionAttributePath';
hasPath: false;
payload: {
attributePath: string;
};
}>;
export type SchemaActionUtilsErrorBlueprints = InvalidExpressionAttributePathErrorBlueprint;
export {};