fix(core): update

This commit is contained in:
2021-01-28 01:31:42 +00:00
parent 6c2057b119
commit be38e91548
5 changed files with 22 additions and 17 deletions

View File

@ -1,6 +1,6 @@
export interface ITag <T = any> {
export interface ITag<T = any> {
id: string;
payload: T;
}
export type TTagStore = {[key: string]: ITag};
export type TTagStore = { [key: string]: ITag };