Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
c7ce7af521 | |||
84c6a599ac |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@financeplus/finplus-interfaces",
|
||||
"version": "1.0.14",
|
||||
"version": "1.0.15",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@financeplus/finplus-interfaces",
|
||||
"version": "1.0.14",
|
||||
"version": "1.0.15",
|
||||
"private": false,
|
||||
"description": "an interface package for the financeplus organization",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -6,8 +6,9 @@ interface ITestTransaction {
|
||||
amount: number;
|
||||
}
|
||||
|
||||
tap.test('first test', async () => {
|
||||
tap.test('implement test csv parser', async () => {
|
||||
class MyCsvParser extends finplusInterfaces.AcCsvParser<ITestTransaction> {
|
||||
paymentProviderName: 'bunq';
|
||||
public transactionArray: ITestTransaction[] = [];
|
||||
public async getTransactions(): Promise<ITestTransaction[]> {
|
||||
return this.transactionArray;
|
||||
|
Reference in New Issue
Block a user