@meshwatch/backend-core
Version:
Meshwatch backend core services.
14 lines (13 loc) • 474 B
TypeScript
import DynamoDB from 'aws-sdk/clients/dynamodb';
import { StartedTestContainer } from 'testcontainers/dist/test-container';
declare class DynamoDBContainer {
private readonly container;
private readonly DYNAMO_IMAGE;
constructor();
start: (exposedPort?: number) => Promise<{
container: StartedTestContainer;
dynamodb: DynamoDB;
dynamodbDocumentClient: DynamoDB.DocumentClient;
}>;
}
export default DynamoDBContainer;