Meilisearch JS
    Preparing search index...

    Type Alias WaitOptions

    Options for awaiting EnqueuedTask.

    type WaitOptions = {
        interval?: number;
        timeout?: number;
    }
    Index

    Properties

    Properties

    interval?: number

    Task polling interval in milliseconds. A value of less than 1 disables it.

    50

    timeout?: number

    Milliseconds until timeout error will be thrown for each awaited task. A value of less than 1 disables it.

    5000