dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
12 lines (11 loc) • 430 B
TypeScript
import type { ErrorBlueprint } from '../../../errors/blueprint.js';
import type { ScanCommandParamsErrorBlueprints } from './scanParams/errors.js';
type NoEntityMatchedErrorBlueprint = ErrorBlueprint<{
code: 'scanCommand.noEntityMatched';
hasPath: false;
payload: {
item: unknown;
};
}>;
export type ScanCommandErrorBlueprints = ScanCommandParamsErrorBlueprints | NoEntityMatchedErrorBlueprint;
export {};