fix(core): update

This commit is contained in:
Philipp Kunz 2019-06-24 15:51:33 +02:00
parent 444de6c2a1
commit 3470b66ef3
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as finplusInterfaces from '../ts/index'; import * as finplusInterfaces from '../ts/index';
tap.test('first test', async () => { tap.test('first test', async () => {
console.log(finplusInterfaces.standardExport); let dummyCsvParser : finplusInterfaces.ICsvParser;
dummyCsvParser;
}); });
tap.start(); tap.start();

View File

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