@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.cjs +1423 -1
- package/dist/index.d.cts +14 -1
- package/dist/index.d.ts +14 -1
- package/dist/index.js +1420 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
@@ -1,2 +1,15 @@
|
|
1
|
+
import React from 'react';
|
1
2
|
|
2
|
-
|
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
|
-
|
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 };
|