UNPKG

329 BTypeScriptView Raw
1import { ProductListDetail } from '.';
2/**
3 * Returns a list of products ready to be rendered
4 */
5export declare function useProductListItems(
6/** Passing null for id will retrieve the default product list */
7id?: string | null, options?: {
8 /** Limit how many items are returned */
9 limit?: number;
10}): ProductListDetail;