1.0.1 • Published 5 years ago

openfin-ts v1.0.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
5 years ago

openfin-ts

Build Status Coverage Status

Typescript compatible fints implementation

Install

//npm
npm install --save openfin-ts
//yarn
yarn add openfin-ts

Example

import { FinTSClient } from 'openfin-ts';

const client = new FinTSClient("12345",
    "http://testbank.com/hbci",
    "customerId",
    "1234pin");

try {
  await client.connect();
  const transactions = await client.getTransactions(client.konten[0].sepaData, null, null);
  transactions.forEach(transaction => {
        //Do things with transactions
  });
  await client.close();
} catch (err) {
  //handle errors
}

For more examples see the tests in /test