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) • 363 B
TypeScript
import { ITransaction } from "@/interface/transaction.interface";
declare const usePendingTransactions: () => {
getPendingTransactions: ({ page, limit, }: {
page?: number | undefined;
limit?: number | undefined;
}) => Promise<{
transactions: ITransaction[];
total: number;
}>;
};
export default usePendingTransactions;