fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-26 11:24:41 +02:00
parent 8e1459bc86
commit d63621fe82
2 changed files with 15 additions and 0 deletions

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@apiglobal/typedrequest-interfaces',
version: '1.0.16',
description: 'interfaces for making typed requests'
}

View File

@ -58,3 +58,10 @@ export interface ITypedEvent<T> {
uniqueEventId: string;
payload: T;
}
export interface ITag {
name: string;
payload: any;
}
export type implementsTag<T, U extends T> = {};