get veggie

This commit is contained in:
DatNguyen
2021-10-04 16:38:02 +07:00
parent f0d636ceed
commit e12c43f393
9 changed files with 100 additions and 28 deletions

View File

@@ -52,4 +52,13 @@ export type filterContextType = {
visible: boolean;
open: () => void;
close: () => void;
};
};
export interface StringMap { [key: string]: string; }
export interface FacetMap extends StringMap{
PARENT_NAME: string
}
export interface FacetConstant{
[key: string]: FacetMap;
}