@pinerohit11/testwidget 0.1.41 → 0.1.43
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +2186 -4
- package/dist/index.d.cts +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +2186 -3
- package/package.json +50 -45
package/dist/index.d.cts
CHANGED
@@ -29,4 +29,27 @@ interface PaymentRequestProps {
|
|
29
29
|
}
|
30
30
|
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
31
31
|
|
32
|
-
|
32
|
+
interface RequestPaymentProps {
|
33
|
+
fractalpayClientKey: string;
|
34
|
+
amount: string;
|
35
|
+
orderID: string;
|
36
|
+
}
|
37
|
+
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
38
|
+
|
39
|
+
declare function Payment(): React.JSX.Element;
|
40
|
+
|
41
|
+
type CompletedTransactionsProps = {
|
42
|
+
fractalpayClientKey: string;
|
43
|
+
};
|
44
|
+
declare function CompletedTransactions(props: CompletedTransactionsProps): React.JSX.Element;
|
45
|
+
|
46
|
+
declare function TockenizPay(): React.JSX.Element;
|
47
|
+
|
48
|
+
interface GetPaymentDynamicProps {
|
49
|
+
amount: string;
|
50
|
+
fractalpayClientKey: string;
|
51
|
+
orderID: string;
|
52
|
+
}
|
53
|
+
declare function GetPaymentDynamic(props: GetPaymentDynamicProps): React.JSX.Element;
|
54
|
+
|
55
|
+
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|
package/dist/index.d.ts
CHANGED
@@ -29,4 +29,27 @@ interface PaymentRequestProps {
|
|
29
29
|
}
|
30
30
|
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
31
31
|
|
32
|
-
|
32
|
+
interface RequestPaymentProps {
|
33
|
+
fractalpayClientKey: string;
|
34
|
+
amount: string;
|
35
|
+
orderID: string;
|
36
|
+
}
|
37
|
+
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
38
|
+
|
39
|
+
declare function Payment(): React.JSX.Element;
|
40
|
+
|
41
|
+
type CompletedTransactionsProps = {
|
42
|
+
fractalpayClientKey: string;
|
43
|
+
};
|
44
|
+
declare function CompletedTransactions(props: CompletedTransactionsProps): React.JSX.Element;
|
45
|
+
|
46
|
+
declare function TockenizPay(): React.JSX.Element;
|
47
|
+
|
48
|
+
interface GetPaymentDynamicProps {
|
49
|
+
amount: string;
|
50
|
+
fractalpayClientKey: string;
|
51
|
+
orderID: string;
|
52
|
+
}
|
53
|
+
declare function GetPaymentDynamic(props: GetPaymentDynamicProps): React.JSX.Element;
|
54
|
+
|
55
|
+
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|