ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
11 lines (10 loc) • 407 B
TypeScript
import { IOrderInterface } from "../interfaces/transactionInterface";
import { UserInfo } from "../interfaces/interface";
export declare const useTransaction: (token: string, userInfo: UserInfo, userId: string, baseUrl: string, lang?: string) => {
OrderRequest: (values: IOrderInterface) => Promise<{
response: any;
newUser: any;
message: any;
status: string;
}>;
};