disvite
    Preparing search index...

    Interface InviteTrackerOptions

    Interface representing the options for the InviteTracker initialization.

    interface InviteTrackerOptions {
        cacheStore?: CacheStore;
        modelName?: string;
        verbose?: boolean;
    }
    Index

    Properties

    cacheStore?: CacheStore

    A custom cache store implementation. If not provided, InMemoryCacheStore will be used.

    modelName?: string

    A optional name for the mongo model. If not provided, the default name "inviteSchema" will be used.

    verbose?: boolean

    Set it to true to enable verbose logging. This is useful for development and debugging purposes.