UNPKG

@testcontainers/chromadb

Version:
11 lines (10 loc) 444 B
import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers"; export declare class ChromaDBContainer extends GenericContainer { constructor(image: string); start(): Promise<StartedChromaDBContainer>; } export declare class StartedChromaDBContainer extends AbstractStartedContainer { private readonly host; constructor(startedTestContainer: StartedTestContainer); getHttpUrl(): string; }