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.
15 lines (14 loc) • 457 B
TypeScript
import { UserInfo } from "../interfaces/interface";
export declare const useGetUserLatest: (token: string, userInfo: UserInfo, userId: string, baseUrl: string, lang?: string) => {
GetLatestByUserId: () => Promise<{
response: import("axios").AxiosResponse<any, any>;
newUser: {};
message: any;
status: string;
} | {
response: any;
newUser: any;
message: any;
status: string;
}>;
};