@scalar/api-client-react 0.5.2 → 0.5.3
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/CHANGELOG.md +8 -0
- package/dist/index.cjs +45 -47
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3966 -3999
- package/package.json +5 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ClientRequestConfig } from '@scalar/api-client';
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as default_2 } from 'react';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Api Client React
|
|
6
6
|
*/
|
|
7
|
-
export declare const ApiClientReact: ({ proxy, close, isOpen, request, }: Props) =>
|
|
7
|
+
export declare const ApiClientReact: ({ proxy, close, isOpen, request, }: Props) => default_2.JSX.Element;
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Api Client base for react
|
|
@@ -13,7 +13,7 @@ export declare const ApiClientReact: ({ proxy, close, isOpen, request, }: Props)
|
|
|
13
13
|
*/
|
|
14
14
|
export declare const ApiClientReactBase: (props: {
|
|
15
15
|
proxy: string;
|
|
16
|
-
}) =>
|
|
16
|
+
}) => default_2.JSX.Element;
|
|
17
17
|
|
|
18
18
|
declare type Props = {
|
|
19
19
|
close: () => void;
|