smartsocket/ts/interfaces/tag.ts
2021-01-28 01:30:27 +00:00

6 lines
111 B
TypeScript

export interface ITag <T = any> {
id: string;
payload: T;
}
export type TTagStore = {[key: string]: ITag};