dynamodb-toolbox
Version:
A simple set of tools for working with Amazon DynamoDB and the DocumentClient.
9 lines (8 loc) • 335 B
TypeScript
/**
* DynamoDB Toolbox: A simple set of tools for working with Amazon DynamoDB
* @author Jeremy Daly <jeremy@jeremydaly.com>
* @license MIT
*/
import { TableAttributes } from '../classes/Table/types.js';
declare const _default: (attrs: TableAttributes, partitionKey: string, sortKey: string | null) => {};
export default _default;