fix(core): update

This commit is contained in:
Philipp Kunz 2019-06-24 15:49:42 +02:00
parent 41ba681227
commit acf9dac659
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,4 @@
import * as plugins from './finplus-interfaces.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export * from './interfaces/csvparser.ts';

View File

@ -0,0 +1,4 @@
export interface ICsvParser {
parse: () => Promise<any>;
}