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

18 lines (17 loc) 580 B
import ApiAdapter from "../ApiAdapter"; import Session from "../Session"; import ApiEndpointInterface from "../Interfaces/ApiEndpointInterface"; export default class CustomerStatementExportContent implements ApiEndpointInterface { ApiAdapter: ApiAdapter; Session: Session; /** * @param {ApiAdapter} ApiAdapter */ constructor(ApiAdapter: ApiAdapter); /** * * @param options * @returns {Promise<Blob|Buffer>} */ list(userId: number, accountId: number, customerStatementId: number, options?: any): Promise<Blob | ArrayBuffer>; }