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 274 B
import type { SupportedAttributeValueType } from "./SupportedAttributeValueType.js"; /** * A non-generic base Item-type with supported value types. */ export interface BaseItem { [attrName: string]: SupportedAttributeValueType; } //# sourceMappingURL=BaseItem.d.ts.map