fix(core): add Base class for csv Parsers

This commit is contained in:
2019-07-07 17:24:29 +02:00
parent 9e7a23edb0
commit 7afcabf3f9
4 changed files with 231 additions and 94 deletions

View File

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