UNPKG

@nerdware/ddb-single-table

Version:

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

9 lines 379 B
import type { AttributeName } from "./AttributeName.js"; import type { KeyAttributeConfig } from "./KeyAttributeConfig.js"; /** * Type for the `TableKeys` schema; for `Model` schemas, instead use {@link ModelSchemaType}. */ export interface TableKeysSchemaType { readonly [keyAttrName: AttributeName]: KeyAttributeConfig; } //# sourceMappingURL=TableKeysSchemaType.d.ts.map