Interface FetchEventInit

    interface FetchEventInit {
        bubbles?: boolean;
        cancelable?: boolean;
        clientId?: string;
        composed?: boolean;
        handled?: Promise<undefined>;
        preloadResponse?: Promise<any>;
        replacesClientId?: string;
        request: Request;
        resultingClientId?: string;
    }
    Hierarchy

    Properties

    bubbles?: boolean
    cancelable?: boolean
    clientId?: string
    composed?: boolean
    handled?: Promise<undefined>
    preloadResponse?: Promise<any>
    replacesClientId?: string
    request: Request
    resultingClientId?: string