9 Commits

Author SHA1 Message Date
9e7a23edb0 1.0.8 2019-07-07 17:18:13 +02:00
0cf6aab426 fix(core): update 2019-07-07 17:18:12 +02:00
a971c6e1bc 1.0.7 2019-06-24 15:51:33 +02:00
3470b66ef3 fix(core): update 2019-06-24 15:51:33 +02:00
444de6c2a1 1.0.6 2019-06-24 15:49:43 +02:00
acf9dac659 fix(core): update 2019-06-24 15:49:42 +02:00
41ba681227 1.0.5 2019-06-24 15:30:15 +02:00
9c4cab0a01 1.0.4 2019-05-23 17:55:03 +02:00
e6a97a07da 1.0.3 2019-05-23 17:43:46 +02:00
6 changed files with 11 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@financeplus/finplus-interfaces", "name": "@financeplus/finplus-interfaces",
"version": "1.0.2", "version": "1.0.8",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@financeplus/finplus-interfaces", "name": "@financeplus/finplus-interfaces",
"version": "1.0.2", "version": "1.0.8",
"private": false, "private": false,
"description": "an interface package for the financeplus organization", "description": "an interface package for the financeplus organization",
"main": "dist/index.js", "main": "dist/index.js",

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

View File

@ -0,0 +1,4 @@
export abstract class AcCsvParser<T> {
public abstract transactionArray: T[];
public abstract async getTransactions (): Promise<T>;
}

1
ts/interfaces/index.ts Normal file
View File

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