interface InteractiveProductOptions {
    debounceWait?: number;
    product: Product;
    selectionDelay?: number;
}

Hierarchy

  • InteractiveResultCoreOptions
    • InteractiveProductOptions

Properties

debounceWait?: number

The number of seconds for which the debounced function should continue catching subsequent calls.

1000

product: Product

The product to log analytics for.

selectionDelay?: number

The amount of time to wait before selecting the result after calling beginDelayedSelect.

1000