UNPKG

@moicky/dynamodb

Version:

Contains a collection of convenience functions for working with AWS DynamoDB

12 lines (11 loc) 446 B
import { DynamoDBClient } from "@aws-sdk/client-dynamodb"; /** * Initializes the {@link DynamoDBClient} to use for all operations. * @param newClient - The new {@link DynamoDBClient} to use */ export declare const initClient: (newClient: DynamoDBClient) => void; /** * Returns the current {@link DynamoDBClient} used for all operations. * @returns The current {@link DynamoDBClient} */ export declare const getClient: () => DynamoDBClient;