UNPKG

betterddb

Version:

A definition-based DynamoDB wrapper library that provides a schema-driven and fully typesafe DAL.

16 lines 534 B
import { type BetterDDB } from "../betterddb.js"; export declare class BatchGetBuilder<T> { private parent; private keys; /** * @param parent - The BetterDDB instance for the table. * @param keys - An array of partial keys for the items you wish to retrieve. */ constructor(parent: BetterDDB<T>, keys: Partial<T>[]); /** * Executes the batch get operation. * Returns an array of parsed items of type T. */ execute(): Promise<T[]>; } //# sourceMappingURL=batch-get-builder.d.ts.map