@kubb/plugin-fetch 5.0.0-beta.98 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +336 -486
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +335 -485
- package/dist/index.js.map +1 -1
- package/package.json +7 -10
- package/src/generators/clientGenerator.tsx +4 -101
package/dist/index.d.ts
CHANGED
|
@@ -168,10 +168,10 @@ declare global {
|
|
|
168
168
|
//#region src/generators/clientGenerator.d.ts
|
|
169
169
|
/**
|
|
170
170
|
* Built-in operation generator for `@kubb/plugin-fetch`. Emits one async function per OpenAPI
|
|
171
|
-
* operation using the shared `Operation` component: a grouped `<Name>Request` type and a function
|
|
172
|
-
* forwards a single `options` object to the bundled `client` and returns the `RequestResult`.
|
|
171
|
+
* operation using the shared `Operation` component: a grouped `<Name>Request` type and a function
|
|
172
|
+
* that forwards a single `options` object to the bundled `client` and returns the `RequestResult`.
|
|
173
173
|
*/
|
|
174
|
-
declare const clientGenerator: import("kubb/kit").Generator<PluginFetch
|
|
174
|
+
declare const clientGenerator: import("kubb/kit").Generator<PluginFetch>;
|
|
175
175
|
//#endregion
|
|
176
176
|
//#region src/plugin.d.ts
|
|
177
177
|
/**
|