fix(core): update

This commit is contained in:
2021-01-28 01:30:27 +00:00
parent bfa3330eb6
commit 08d7224016
8 changed files with 152 additions and 22 deletions

View File

@ -1 +1,2 @@
export * from './connection';
export * from './tag';

6
ts/interfaces/tag.ts Normal file
View File

@ -0,0 +1,6 @@
export interface ITag <T = any> {
id: string;
payload: T;
}
export type TTagStore = {[key: string]: ITag};