@meshwatch/backend-core
Version:
Meshwatch backend core services.
13 lines (12 loc) • 438 B
TypeScript
import { StartedTestContainer } from 'testcontainers/dist/test-container';
import PostgresClient from '../../src/shared/postgres';
declare class TimescaleDBContainer {
private readonly container;
private readonly TIMESCALE_IMAGE;
constructor();
start: (exposedPort?: number) => Promise<{
container: StartedTestContainer;
pgClient: PostgresClient;
}>;
}
export default TimescaleDBContainer;