smartsocket/ts/interfaces/tag.ts
2021-01-28 01:31:42 +00:00

7 lines
113 B
TypeScript

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