themeparks - v7.0.0
    Preparing search index...

    Interface TransportOptions

    interface TransportOptions {
        baseUrl: string;
        fetch: FetchLike;
        retry: RetryConfig;
        sleep?: (ms: number) => Promise<void>;
        timeoutMs: number;
        userAgent: string;
    }
    Index

    Properties

    baseUrl: string
    fetch: FetchLike

    Retry policy. See RetryConfigmax counts retries beyond the initial attempt, so { max: 3 } permits up to 4 total calls.

    sleep?: (ms: number) => Promise<void>
    timeoutMs: number
    userAgent: string