shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
17 lines (14 loc) • 371 B
text/typescript
import IShopBrandColor from './IShopBrandColor';
import IShopBrandImage from './IShopBrandImage';
export interface IShopBrand {
shortDescription: string;
slogan: string;
colors: {
primary: IShopBrandColor;
secondary: IShopBrandColor;
};
coverImage: IShopBrandImage;
logo: IShopBrandImage;
squareLogo: IShopBrandImage;
}
export default IShopBrand;