Type Alias FfetchResultInternals<RequestMixin>

FfetchResultInternals: FfetchResult & {
    _headers?: Record<string, string>;
    _init: RequestInit;
    _options: FfetchOptions & RequestMixin;
    _url: string;
}

internals that are exposed to the functions in response mixin

Type Parameters

  • RequestMixin extends object

Type declaration

  • Optional_headers?: Record<string, string>

    finalized and merged headers

  • _init: RequestInit

    request init object that will be passed to fetch

  • _options: FfetchOptions & RequestMixin

    finalized and merged options

  • _url: string

    final url of the request