interface TrendingProduct { /** * The trending product asset. * * @type {string} */ asset: string; /** * The trending product title. * * @type {string} */ title: string; /** * The trending product category. * * @type {string} */ type: string; } export default TrendingProduct;