@bunq-community/bunq-js-client
Version:
[ ](https://www.npmjs.com/package/@bunq-community/bunq-js-client) [ ](https://www.npmjs.com/p
16 lines (15 loc) • 535 B
TypeScript
import BunqJSClient from "../BunqJSClient";
import Session from "../Session";
import LoggerInterface from "../Interfaces/LoggerInterface";
export default class VerifyResponseHandler {
Session: Session;
logger: LoggerInterface;
BunqJSClient: BunqJSClient;
constructor(Session: Session, loggerInterface: LoggerInterface, BunqJSClient: BunqJSClient);
/**
* Verifies the response of a request
* @param response
* @returns {Promise<boolean>}
*/
verifyResponse(response: any): Promise<boolean>;
}