@scalar/api-client-react 0.1.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.
@@ -0,0 +1,22 @@
1
+ import { ClientRequestConfig } from '@scalar/api-client';
2
+ import { default as React_2 } from 'react';
3
+
4
+ /**
5
+ * Api Client React
6
+ */
7
+ export declare const ApiClientReact: ({ close, isOpen, request }: Props) => React_2.JSX.Element;
8
+
9
+ /**
10
+ * Api Client base for react
11
+ * You are probably looking for ApiClientReact
12
+ * only use this if you know what you are doing
13
+ */
14
+ export declare const ApiClientReactBase: () => React_2.JSX.Element;
15
+
16
+ declare type Props = {
17
+ close: () => void;
18
+ isOpen: boolean;
19
+ request: ClientRequestConfig;
20
+ };
21
+
22
+ export { }