prorm API Reference
    Preparing search index...

    Interface RavenDbStoreOptions

    Connection options for RavenDbStore.

    urls and database configure the underlying DocumentStore. When a pre-built client is supplied (e.g. in tests), connect() uses it directly and skips loading the ravendb driver.

    interface RavenDbStoreOptions {
        urls?: string[];
        database?: string;
        client?: any;
    }
    Index
    urls?: string[]
    database?: string
    client?: any

    A pre-built DocumentStore to use instead of the driver.