Compare commits

...

6 Commits

Author SHA1 Message Date
8316de8d82 1.0.10 2019-11-10 16:35:43 +01:00
f2c953f0e8 fix(core): update 2019-11-10 16:35:43 +01:00
5696b3cb19 1.0.9 2019-11-10 16:05:15 +01:00
3e3b955f04 1.0.8 2019-09-24 18:40:38 +02:00
d9326300b0 fix(core): update 2019-09-24 18:40:37 +02:00
b9b80d1078 1.0.7 2019-08-23 17:01:36 +02:00
3 changed files with 8 additions and 2 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -3,3 +3,9 @@ export interface ITypedRequest {
request: object;
response: object;
}
export interface IBroadCastEvent<T> {
name: string;
uniqueEventId: string;
payload: T;
}