Skip to content

Commit 6cd7818

Browse files
committed
[Auto Generated]
1 parent ca51207 commit 6cd7818

3 files changed

Lines changed: 16 additions & 9 deletions

File tree

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
interface PaymentFlow {
2+
api_link: string;
3+
}
4+
interface SelectedPayment {
5+
paymentFlowMeta: PaymentFlow;
6+
}
17
export default class PayumoneyPayment {
2-
selectedPayment: any;
3-
paymentFlow: any;
4-
constructor(selectedPayment: {
5-
paymentFlowMeta: any;
6-
});
7-
transaction(): Promise<unknown>;
8+
selectedPayment: SelectedPayment;
9+
paymentFlow: PaymentFlow;
10+
constructor(selectedPayment: SelectedPayment);
11+
transaction(obj: any): Promise<boolean>;
812
}
13+
export {};

lib/store/utils/gateways/payumoney.js

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/store/utils/gateways/payumoney.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)