API (v2.0.0) - Giro3D
    Preparing search index...

    Interface FetchOptions

    interface FetchOptions {
        retries?: number;
        retryDelay?: number;
    }

    Hierarchy

    • RequestInit
      • FetchOptions
    Index

    Properties

    retries?: number

    The number of retries if the initial requests fails with an HTTP error code.

    undefined
    
    retryDelay?: number

    The delay to wait (in milliseconds) before a new try is attempted. Only if retries is defined.

    1000