保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;