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 #1593 from bvincent1/patch-1

Update fetch.md to show async support

authored by

Lubos and committed by
GitHub
c26e7924 b463bbf9

+2 -1
+2 -1
docs/openapi-ts/clients/fetch.md
··· 95 95 ```js [use] 96 96 import { client } from 'client/sdk.gen'; 97 97 98 - client.interceptors.request.use((request) => { 98 + // Supports async functions 99 + client.interceptors.request.use(async (request) => { 99 100 // do something 100 101 return request; 101 102 });