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 430 B
import type { ClientWrapperCreateTableInput } from "../../DdbClientWrapper/types/index.js"; import type { Simplify, Except } from "type-fest"; /** * Parameters for the `table.createTable()` method. */ export type CreateTableParameters = Simplify<Except<ClientWrapperCreateTableInput, "KeySchema" | "AttributeDefinitions" | "GlobalSecondaryIndexes" | "LocalSecondaryIndexes">>; //# sourceMappingURL=CreateTableParameters.d.ts.map