fix(core): update

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

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> = {};