We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 571282c commit e3c4e34Copy full SHA for e3c4e34
examples/rest-api-client-dts/index.d.ts
@@ -2,9 +2,12 @@ import { Base, ExtendBaseWith } from "../../index.js";
2
3
import { requestPlugin } from "./request-plugin.js";
4
5
-export const RestApiClient: ExtendBaseWith<Base, {
6
- defaults: {
7
- userAgent: string;
8
- },
9
- plugins: [typeof requestPlugin],
10
-}>;
+export const RestApiClient: ExtendBaseWith<
+ Base,
+ {
+ defaults: {
+ userAgent: string;
+ };
11
+ plugins: [typeof requestPlugin];
12
+ }
13
+>;
0 commit comments