UNPKG

lesgo

Version:

Core framework for lesgo node.js serverless framework.

8 lines (7 loc) 288 B
import { DynamoDBDocumentClient } from '@aws-sdk/lib-dynamodb'; import { ClientOptions } from '../../types/aws'; export interface Singleton { [key: string]: DynamoDBDocumentClient; } declare const getClient: (opts?: ClientOptions) => DynamoDBDocumentClient; export default getClient;