@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 • 326 B
TypeScript
import type { TableKeysSchemaType } from "../../Schema/types/index.js";
import type { Table } from "../Table.js";
/**
* An instance of the {@link Table} class.
*/
export type TableInstance<TableKeysSchema extends TableKeysSchemaType> = InstanceType<typeof Table<TableKeysSchema>>;
//# sourceMappingURL=TableInstance.d.ts.map