mirror of
https://github.com/vercel/commerce.git
synced 2025-05-09 03:07:50 +00:00
29 lines
453 B
TypeScript
29 lines
453 B
TypeScript
export type Brand = {
|
|
brandId: string;
|
|
companyName: string;
|
|
};
|
|
|
|
export type Content = {
|
|
contentId: string;
|
|
contentUrl: string;
|
|
};
|
|
|
|
export type ContentLandingPage = {
|
|
contentLandingPageId: string;
|
|
slug: string;
|
|
content: Content;
|
|
brand: Brand;
|
|
store: Store;
|
|
productId: string;
|
|
};
|
|
|
|
export type ContentLandingPages = {
|
|
[key: string]: ContentLandingPage;
|
|
};
|
|
|
|
export type Store = {
|
|
storeId: string;
|
|
domain: string;
|
|
key: string;
|
|
};
|