fix(core): update

This commit is contained in:
Philipp Kunz 2023-11-16 02:22:01 +01:00
parent 56460edeb2
commit 2017634f87
2 changed files with 5 additions and 3 deletions

View File

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

View File

@ -1,4 +1,6 @@
export abstract class AcCsvParser<T> {
import { type IMonetaryTransaction } from '../interfaces/transaction.js';
export abstract class AcCsvParser<TOriginalTrnasction> {
public abstract paymentProviderName: string;
public abstract getTransactions(): Promise<T[]>;
public abstract getTransactions(): Promise<IMonetaryTransaction[]>;
}