3 Commits

Author SHA1 Message Date
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
4 changed files with 8 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@financeplus/finplus-interfaces", "name": "@financeplus/finplus-interfaces",
"version": "1.0.4", "version": "1.0.6",
"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.4", "version": "1.0.6",
"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

@ -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.ts';

View File

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