dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
29 lines (28 loc) • 990 B
TypeScript
import type { ErrorBlueprint } from '../../errors/blueprint.js';
type InvalidElementsErrorBlueprint = ErrorBlueprint<{
code: 'schema.tuple.invalidElements';
hasPath: true;
payload: undefined;
}>;
type MissingElementsErrorBlueprint = ErrorBlueprint<{
code: 'schema.tuple.missingElements';
hasPath: true;
payload: undefined;
}>;
type OptionalElementsErrorBlueprint = ErrorBlueprint<{
code: 'schema.tuple.optionalElements';
hasPath: true;
payload: undefined;
}>;
type HiddenElementsErrorBlueprint = ErrorBlueprint<{
code: 'schema.tuple.hiddenElements';
hasPath: true;
payload: undefined;
}>;
type SavedAsElementsErrorBlueprint = ErrorBlueprint<{
code: 'schema.tuple.savedAsElements';
hasPath: true;
payload: undefined;
}>;
export type TupleSchemaErrorBlueprint = InvalidElementsErrorBlueprint | MissingElementsErrorBlueprint | OptionalElementsErrorBlueprint | HiddenElementsErrorBlueprint | SavedAsElementsErrorBlueprint;
export {};