mirror of
https://github.com/vercel/commerce.git
synced 2025-07-26 03:31:23 +00:00
feat: get blog list
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
|
||||
export interface ProductProps {
|
||||
category?: string
|
||||
name: string
|
||||
@@ -57,8 +58,18 @@ export type filterContextType = {
|
||||
close: () => void;
|
||||
};
|
||||
|
||||
export interface StringMap { [key: string]: string; }
|
||||
|
||||
export interface FacetMap extends StringMap{
|
||||
PARENT_NAME: string
|
||||
}
|
||||
export interface FacetConstant{
|
||||
[key: string]: FacetMap;
|
||||
}
|
||||
export type PromiseWithKey = {
|
||||
key: string
|
||||
promise: PromiseLike<any>
|
||||
keyResult?: string,
|
||||
}
|
||||
|
||||
export type SelectedOptions = Record<string, string | null>
|
Reference in New Issue
Block a user