UNPKG

gamingpe-chatbot

Version:

This chatbot can be used for the Deposit, Withdrawal and Solving query for the pending transaction faster than before.

12 lines (11 loc) 612 B
import React from "react"; import { ITransaction } from "@/interface/transaction.interface"; import { PaymentOptionsEnum } from "@/app/enums/deposit.enum"; import { TransactionMode } from "@/app/enums/transactionMode.enum"; import { WithdrawalOptionsEnum } from "@/app/enums/withdraw.enum"; interface PaymentMethodProps { transaction?: ITransaction; handleOptionClick: (option: TransactionMode | PaymentOptionsEnum | WithdrawalOptionsEnum) => void; } declare const PaymentMethodsMobile: ({ transaction, handleOptionClick, }: PaymentMethodProps) => React.JSX.Element; export default PaymentMethodsMobile;