prorm API Reference
    Preparing search index...

    Interface ProvendbStoreOptions

    Connection options for ProvendbStore.

    interface ProvendbStoreOptions {
        baseURL?: string;
        client?: ProvendbHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the ProvenDB HTTP API. Defaults to http://localhost:8080.

    client?: ProvendbHttpClient

    Optional pre-built HTTP client; when provided, baseURL is ignored.

    headers?: Record<string, string>

    Extra HTTP headers (e.g. an API token).