7 lines
113 B
TypeScript
7 lines
113 B
TypeScript
export interface ITag<T = any> {
|
|
id: string;
|
|
payload: T;
|
|
}
|
|
|
|
export type TTagStore = { [key: string]: ITag };
|