Interface WaitOptions

interface WaitOptions {
    abortSignal?: AbortSignal;
    delay?: null | number;
}

Properties

Properties

abortSignal?: AbortSignal

An AbortSignal to trigger cancellation.

delay?: null | number

Milliseconds to wait. An empty delay will prompt immediate resolution.