![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/unfetch/src/ |
import { Body as NodeBody, Headers as NodeHeaders, Request as NodeRequest, Response as NodeResponse, RequestInit as NodeRequestInit } from "node-fetch"; declare namespace unfetch { export type IsomorphicHeaders = Headers | NodeHeaders; export type IsomorphicBody = Body | NodeBody; export type IsomorphicResponse = Response | NodeResponse; export type IsomorphicRequest = Request | NodeRequest; export type IsomorphicRequestInit = RequestInit | NodeRequestInit; } type UnfetchResponse = { ok: boolean, statusText: string, status: number, url: string, text: () => Promise<string>, json: () => Promise<any>, blob: () => Promise<Blob>, clone: () => UnfetchResponse, headers: { keys: () => string[], entries: () => Array<[string, string]>, get: (key: string) => string | undefined, has: (key: string) => boolean, } } type Unfetch = ( url: string, options?: { method?: string, headers?: Record<string, string>, credentials?: 'include' | 'omit', body?: Parameters<XMLHttpRequest["send"]>[0] } ) => Promise<UnfetchResponse> declare const unfetch: Unfetch; export default unfetch;