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.

6 lines (5 loc) 241 B
import { FinancialEntity, UserDetail } from '../models'; export default interface IUsersClient { get: (id: string | number) => Promise<UserDetail>; getFinancialEntities: (isBankAggregation?: boolean) => Promise<FinancialEntity[]>; }