UNPKG

mobyo-interfaces

Version:
15 lines (14 loc) 308 B
export interface IProductBrand { /** * @minlength 1 * @maxlength 120 * @example "Brand name" */ name: string; /** * * URL to an image representing the product brand. * It should be a valid URL. * @example "http://www.example.com" */ picture: string; }