Skip to content

Commit e3c4e34

Browse files
Prettier
1 parent 571282c commit e3c4e34

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

examples/rest-api-client-dts/index.d.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ import { Base, ExtendBaseWith } from "../../index.js";
22

33
import { requestPlugin } from "./request-plugin.js";
44

5-
export const RestApiClient: ExtendBaseWith<Base, {
6-
defaults: {
7-
userAgent: string;
8-
},
9-
plugins: [typeof requestPlugin],
10-
}>;
5+
export const RestApiClient: ExtendBaseWith<
6+
Base,
7+
{
8+
defaults: {
9+
userAgent: string;
10+
};
11+
plugins: [typeof requestPlugin];
12+
}
13+
>;

0 commit comments

Comments
 (0)