6 Commits

Author SHA1 Message Date
f824b3eeb3 1.0.7 2020-10-05 15:50:59 +00:00
0f89832f93 fix(core): update 2020-10-05 15:50:59 +00:00
a6720a0468 1.0.6 2020-10-05 10:58:20 +00:00
1e0616e580 fix(core): update 2020-10-05 10:58:20 +00:00
480c890b2a 1.0.5 2020-10-05 10:34:43 +00:00
877c9bb9b1 fix(core): update 2020-10-05 10:34:43 +00:00
4 changed files with 5 additions and 5 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartfile-interfaces",
"version": "1.0.4",
"version": "1.0.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartfile-interfaces",
"version": "1.0.4",
"version": "1.0.7",
"private": false,
"description": "an interface package for @pushrocks/smartfile",
"main": "dist_ts/index.js",

View File

@@ -2,7 +2,7 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as smartfileInterfaces from '../ts/index';
tap.test('first test', async () => {
console.log(smartfileInterfaces.standardExport);
console.log(smartfileInterfaces);
});
;
tap.start();

View File

@@ -1,5 +1,5 @@
import * as plugins from './smartfile-interfaces.plugins';
export interface VirtualDirTransferableObject {
bufferJsonData: any;
files: string[];
}