fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #698 from lsdch/fetch-client-export-type

authored by

Lubos and committed by
GitHub
4ded70a7 032bd93a

+6 -1
+5
.changeset/healthy-months-listen.md
··· 1 + --- 2 + '@hey-api/client-fetch': patch 3 + --- 4 + 5 + export RequestResult type
+1 -1
packages/client-fetch/src/types.ts
··· 100 100 url: string; 101 101 } 102 102 103 - type RequestResult<Data = unknown, Error = unknown> = Promise< 103 + export type RequestResult<Data = unknown, Error = unknown> = Promise< 104 104 ({ data: Data; error: undefined } | { data: undefined; error: Error }) & { 105 105 request: Request; 106 106 response: Response;