2 Commits

Author SHA1 Message Date
56460edeb2 1.0.19 2023-11-16 02:19:10 +01:00
e2851b36d0 fix(core): update 2023-11-16 02:19:09 +01:00
3 changed files with 2 additions and 3 deletions

@@ -1,6 +1,6 @@
{
"name": "@fin.cx/portablefinance",
"version": "1.0.18",
"version": "1.0.19",
"private": false,
"description": "an interface package for the financeplus organization",
"main": "dist_ts/index.js",

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@fin.cx/portablefinance',
version: '1.0.18',
version: '1.0.19',
description: 'an interface package for the financeplus organization'
}

@@ -1,5 +1,4 @@
export abstract class AcCsvParser<T> {
public abstract paymentProviderName: string;
public abstract transactionArray: T[];
public abstract getTransactions(): Promise<T[]>;
}