UNPKG

@nerdware/ddb-single-table

Version:

A schema-based DynamoDB modeling tool, high-level API, and type-generator built to supercharge single-table designs!⚡

8 lines 267 B
import type { NativeKeyAttributeValue } from "./NativeAttributeValue.js"; /** * A non-generic base type representing the key fields of an Item. */ export type ItemKeys = { [keyAttrName: string]: NativeKeyAttributeValue; }; //# sourceMappingURL=ItemKeys.d.ts.map