geoview-core - v2.3.0
    Preparing search index...

    Type Alias PingResult

    Result of a URL reachability ping check.

    type PingResult = {
        error?: string;
        isReachable: boolean;
        isValid: boolean;
        needsProxy: boolean;
        status: number | null;
    }
    Index
    error?: string

    Optional error message describing why the check failed.

    isReachable: boolean

    Whether the server responded successfully.

    isValid: boolean

    Whether the URL has valid syntax.

    needsProxy: boolean

    Whether the request required a proxy to succeed.

    status: number | null

    The HTTP status code from the server response, or null if no response.