UNPKG

@meshwatch/backend-core

Version:

Meshwatch backend core services.

13 lines (12 loc) 397 B
import { Pool } from 'pg'; import { StartedTestContainer } from 'testcontainers/dist/test-container'; declare class TimescaleDBContainer { private readonly container; private readonly TIMESCALE_IMAGE; constructor(); start: (exposedPort?: number) => Promise<{ container: StartedTestContainer; pgPool: Pool; }>; } export default TimescaleDBContainer;