dynatron
Version:
The most advanced ORM for AWS DynamoDB
14 lines (13 loc) • 544 B
TypeScript
import { BUILD } from "../../utils/misc-utils";
import { ItemRequest } from "./items-request";
export declare class Fetch extends ItemRequest {
#private;
consistentRead: (consistentRead?: boolean) => this;
select: (...attributePaths: (string | string[] | undefined)[]) => this;
[BUILD](): {
_ProjectionExpressions?: string[] | undefined;
ConsistentRead?: true | undefined;
ReturnConsumedCapacity: import("@aws-sdk/client-dynamodb").ReturnConsumedCapacity;
TableName: string | undefined;
};
}