@pinerohit11/testwidget 0.1.42 → 0.1.43
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/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props
|
3
|
+
interface Props {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
amount?: string;
|
6
6
|
}
|
7
|
-
declare function RequestPayment(props: Props
|
7
|
+
declare function RequestPayment(props: Props): React.JSX.Element;
|
8
8
|
|
9
9
|
interface RequestPaymentAllInputProps {
|
10
10
|
fractalpayClientKey: string;
|
@@ -38,18 +38,18 @@ declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }:
|
|
38
38
|
|
39
39
|
declare function Payment(): React.JSX.Element;
|
40
40
|
|
41
|
-
type
|
41
|
+
type CompletedTransactionsProps = {
|
42
42
|
fractalpayClientKey: string;
|
43
43
|
};
|
44
|
-
declare function CompletedTransactions(props:
|
44
|
+
declare function CompletedTransactions(props: CompletedTransactionsProps): React.JSX.Element;
|
45
45
|
|
46
46
|
declare function TockenizPay(): React.JSX.Element;
|
47
47
|
|
48
|
-
interface
|
48
|
+
interface GetPaymentDynamicProps {
|
49
49
|
amount: string;
|
50
50
|
fractalpayClientKey: string;
|
51
51
|
orderID: string;
|
52
52
|
}
|
53
|
-
declare function GetPaymentDynamic(props:
|
53
|
+
declare function GetPaymentDynamic(props: GetPaymentDynamicProps): React.JSX.Element;
|
54
54
|
|
55
55
|
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props
|
3
|
+
interface Props {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
amount?: string;
|
6
6
|
}
|
7
|
-
declare function RequestPayment(props: Props
|
7
|
+
declare function RequestPayment(props: Props): React.JSX.Element;
|
8
8
|
|
9
9
|
interface RequestPaymentAllInputProps {
|
10
10
|
fractalpayClientKey: string;
|
@@ -38,18 +38,18 @@ declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }:
|
|
38
38
|
|
39
39
|
declare function Payment(): React.JSX.Element;
|
40
40
|
|
41
|
-
type
|
41
|
+
type CompletedTransactionsProps = {
|
42
42
|
fractalpayClientKey: string;
|
43
43
|
};
|
44
|
-
declare function CompletedTransactions(props:
|
44
|
+
declare function CompletedTransactions(props: CompletedTransactionsProps): React.JSX.Element;
|
45
45
|
|
46
46
|
declare function TockenizPay(): React.JSX.Element;
|
47
47
|
|
48
|
-
interface
|
48
|
+
interface GetPaymentDynamicProps {
|
49
49
|
amount: string;
|
50
50
|
fractalpayClientKey: string;
|
51
51
|
orderID: string;
|
52
52
|
}
|
53
|
-
declare function GetPaymentDynamic(props:
|
53
|
+
declare function GetPaymentDynamic(props: GetPaymentDynamicProps): React.JSX.Element;
|
54
54
|
|
55
55
|
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|