UNPKG

@meshwatch/backend-core

Version:

Meshwatch backend core services.

13 lines (12 loc) 421 B
import { StartedTestContainer } from 'testcontainers/dist/test-container'; import { DynamoDBClient } from '../../src'; declare class DynamoDBContainer { private readonly container; private readonly DYNAMO_IMAGE; constructor(); start: (exposedPort?: number) => Promise<{ container: StartedTestContainer; dynamoClient: DynamoDBClient; }>; } export default DynamoDBContainer;