UNPKG

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.

12 lines (11 loc) 531 B
import { LimitedTokenInterface } from "../interfaces/signInterface"; import { IGeoCoordinates, UserInfo } from "../interfaces/interface"; export declare const useToken: (userInfo: UserInfo, nodeUrl: string, programId: string, lang?: string, geoCoordinates?: IGeoCoordinates | null) => { CreateLimitedToken: (values: LimitedTokenInterface) => Promise<{ response: any; newUser: any; message: any; status: string; }>; CreateProgramToken: (values: LimitedTokenInterface) => Promise<any>; };