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