SheetXL - v0.3.20
    Preparing search index...

    Interface FetchArgs

    Options for retrieving resources using fetch.

    interface FetchArgs {
        init?: RequestInit;
        input: string | URL | Request;
        timeout?: number;
    }
    Index

    Properties

    Properties

    init?: RequestInit

    The options for the fetch request.

    input: string | URL | Request

    The input to fetch, which can be a string URL, a URL object, or a Request object.

    timeout?: number

    Timeout in milliseconds for fetch operations.

    When the source is a URL or FetchArgs, this timeout will be applied. If the fetch operation takes longer than this timeout, it will be aborted.

    30000 (30 seconds)