From 3470b66ef31f49aee88f960c02221d374b978b27 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 24 Jun 2019 15:51:33 +0200 Subject: [PATCH] fix(core): update --- test/test.ts | 3 ++- ts/index.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test.ts b/test/test.ts index 3e6fa32..e7a6e9c 100644 --- a/test/test.ts +++ b/test/test.ts @@ -2,7 +2,8 @@ import { expect, tap } from '@pushrocks/tapbundle'; import * as finplusInterfaces from '../ts/index'; tap.test('first test', async () => { - console.log(finplusInterfaces.standardExport); + let dummyCsvParser : finplusInterfaces.ICsvParser; + dummyCsvParser; }); tap.start(); diff --git a/ts/index.ts b/ts/index.ts index f4c72b6..f76ab3b 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,4 +1,4 @@ import * as plugins from './finplus-interfaces.plugins'; -export * from './interfaces/csvparser.ts'; +export * from './interfaces/csvparser';