fix(core): update

This commit is contained in:
Philipp Kunz 2019-07-07 17:18:12 +02:00
parent a971c6e1bc
commit 0cf6aab426
2 changed files with 4 additions and 3 deletions

View File

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

1
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './csvparser';