Compare commits

..

2 Commits

Author SHA1 Message Date
74ebb1b307 1.0.3 2019-08-22 15:41:49 +02:00
0083c3c21e fix(core): update 2019-08-22 15:41:49 +02:00
4 changed files with 3 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/typedrequest-interfaces",
"version": "1.0.2",
"version": "1.0.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/typedrequest-interfaces",
"version": "1.0.2",
"version": "1.0.3",
"private": false,
"description": "interfaces for making typed requests",
"main": "dist/index.js",

View File

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

View File

@ -1,8 +1,5 @@
import * as plugins from './typedrequest-interfaces.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export interface ITypedRequest {
method: string;
request: object;