dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
11 lines (10 loc) • 360 B
TypeScript
import type { ErrorBlueprint } from '../../../errors/blueprint.js';
type InvalidProjectionExpressionErrorBlueprint = ErrorBlueprint<{
code: 'batchGetCommand.invalidProjectionExpression';
hasPath: false;
payload: {
entity: string;
};
}>;
export type BatchGetCommandErrorBlueprints = InvalidProjectionExpressionErrorBlueprint;
export {};