Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
a971c6e1bc | |||
3470b66ef3 | |||
444de6c2a1 | |||
acf9dac659 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@financeplus/finplus-interfaces",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.7",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@financeplus/finplus-interfaces",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.7",
|
||||
"private": false,
|
||||
"description": "an interface package for the financeplus organization",
|
||||
"main": "dist/index.js",
|
||||
|
@ -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();
|
||||
|
@ -1,3 +1,4 @@
|
||||
import * as plugins from './finplus-interfaces.plugins';
|
||||
|
||||
export let standardExport = 'Hi there! :) This is an exported string';
|
||||
export * from './interfaces/csvparser';
|
||||
|
||||
|
4
ts/interfaces/csvparser.ts
Normal file
4
ts/interfaces/csvparser.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export interface ICsvParser {
|
||||
parse: () => Promise<any>;
|
||||
|
||||
}
|
Reference in New Issue
Block a user