UNPKG

betterddb

Version:

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

6 lines 230 B
import { type NativeAttributeValue } from "@aws-sdk/lib-dynamodb"; export type PaginatedResult<T> = { items: T[]; lastKey: Record<string, NativeAttributeValue> | undefined; }; //# sourceMappingURL=paginated-result.d.ts.map