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 #1022 from Jannchie/patch-2

fix(types): prevent type error reporting when request body is an object defined by an interface

authored by

Lubos and committed by
GitHub
7f36cfb5 a555e66d

+2 -1
+2 -1
packages/client-fetch/src/types.ts
··· 24 24 | Record<string, unknown> 25 25 | Array<Record<string, unknown>> 26 26 | Array<unknown> 27 - | number; 27 + | number 28 + | unknown; 28 29 /** 29 30 * A function for serializing request body parameter. By default, 30 31 * {@link JSON.stringify()} will be used.