UNPKG

open-banking-pfm-sdk

Version:

The Open Banking PFM SDK uses Client classes and with **Promises** to get responses from the Open Banking PFM API in an easier way and structured as data models.

8 lines (7 loc) 193 B
import ITransaction from './ITransaction'; export default interface ITransactionsResponse { data: ITransaction[]; currentPage: number; totalPages: number; totalItems: number; }