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';