UNPKG

@testcontainers/scylladb

Version:
12 lines (11 loc) 473 B
import { AbstractStartedContainer, GenericContainer, type StartedTestContainer } from "testcontainers"; export declare class ScyllaContainer extends GenericContainer { constructor(image: string); start(): Promise<StartedScyllaContainer>; } export declare class StartedScyllaContainer extends AbstractStartedContainer { constructor(startedTestContainer: StartedTestContainer); getPort(): number; getDatacenter(): string; getContactPoint(): string; }