UNPKG

@nerdware/ddb-single-table

Version:

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

7 lines 408 B
import type { BaseItem } from "./BaseItem.js"; import type { NativeAttributeValue } from "./NativeAttributeValue.js"; /** * Union of attribute value types supported by this package. */ export type SupportedAttributeValueType = NativeAttributeValue | Date | BaseItem | Array<SupportedAttributeValueType> | ReadonlyArray<SupportedAttributeValueType>; //# sourceMappingURL=SupportedAttributeValueType.d.ts.map