UNPKG

@bunq-community/bunq-js-client

Version:

[![NPM Version](https://img.shields.io/npm/v/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/package/@bunq-community/bunq-js-client) [![NPM Downloads](https://img.shields.io/npm/dt/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/p

16 lines (15 loc) 535 B
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>; }