Repository URL to install this package:
|
Version:
2.0.17 ▾
|
import { OrderProps as OrderPlaceholderProps } from 'abstractions/Order/typings';
import { AllItemProps } from 'abstractions/Order/ProductItemList';
import { StoreProductItemDetails } from './StoreProductList';
export interface OrderPresetProps extends OrderPlaceholderProps, AllItemProps {
isSubscriptionItem?: boolean;
list?: Array<StoreProductItemDetails>;
}