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