shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
15 lines • 445 B
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;
//# sourceMappingURL=IShopBrand.d.ts.map