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.
16 lines (15 loc) • 467 B
TypeScript
declare function decryptString(cipherText: string, key: string, iv: string): string;
declare function errorHandler(baseUrl: string, error: any): Promise<{
Class_Name: string;
Function_Name: string;
Type: number;
Inner_Exception: any;
Message: string;
Session_ID: string;
Source_App: string;
Source_ID: string;
Source_IP_Address: string;
Stack_Trace: string;
Target_Site: string;
}>;
export { decryptString, errorHandler };