UNPKG

ordercloud-javascript-sdk

Version:

The offical Javascript SDK for the Ordercloud ecommerce API

9 lines (8 loc) 256 B
import { MetaWithFacets } from './MetaWithFacets'; /** * @typeParam TItem represents the type for each item in the list */ export interface ListPageWithFacets<TItem, TFacetsXp = any> { Items?: TItem[]; Meta?: MetaWithFacets<TFacetsXp>; }