fix(core): update

This commit is contained in:
2019-07-07 18:10:57 +02:00
parent 163f4c0154
commit 2e0164eaf0
5 changed files with 21 additions and 32 deletions

View File

@ -1,4 +1,3 @@
import * as plugins from './finplus-interfaces.plugins';
export * from './interfaces/csvparser';

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[]>;
}

View File

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