@pinerohit11/testwidget 0.1.35 → 0.1.37

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.cts CHANGED
@@ -1,2 +1,15 @@
1
+ import React from 'react';
1
2
 
2
- export { }
3
+ interface Props {
4
+ fractalpayClientKey: string;
5
+ }
6
+ declare function RequestPayment(props: Props): React.JSX.Element;
7
+
8
+ declare function PaywithFractal({ name, amount, orderId, fractalPayClientKey }: {
9
+ name: string;
10
+ amount: number;
11
+ orderId: string;
12
+ fractalPayClientKey: string;
13
+ }): React.JSX.Element;
14
+
15
+ export { PaywithFractal, RequestPayment };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,15 @@
1
+ import React from 'react';
1
2
 
2
- export { }
3
+ interface Props {
4
+ fractalpayClientKey: string;
5
+ }
6
+ declare function RequestPayment(props: Props): React.JSX.Element;
7
+
8
+ declare function PaywithFractal({ name, amount, orderId, fractalPayClientKey }: {
9
+ name: string;
10
+ amount: number;
11
+ orderId: string;
12
+ fractalPayClientKey: string;
13
+ }): React.JSX.Element;
14
+
15
+ export { PaywithFractal, RequestPayment };