@meshwatch/backend-core
Version:
Meshwatch backend core services.
13 lines (12 loc) • 393 B
TypeScript
import { SQS } from 'aws-sdk/clients/all';
import { StartedTestContainer } from 'testcontainers/dist/test-container';
declare class SQSContainer {
private readonly container;
private readonly SQS_IMAGE;
constructor();
start: (exposedPort?: number) => Promise<{
container: StartedTestContainer;
sqsClient: SQS;
}>;
}
export default SQSContainer;