interface Product { /** * The product suggestion title. * * @type {string} */ title: string; /** * The product asset definitions. * * @type {Array} */ assets: Array; /** * * * @type {object} */ meta: { /** * The product category; used for asset scaling. * * @type {string} */ type: string; /** * The product allergy & legal disclaimers. * * @type {string:sring} */ disclaimer: { [key: string]: string; }; }; } export default Product;