Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { ReactNode } from 'react';
import { AnimatedCardProps, AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface CheckoutCartBundleRenderProp extends Function {
    (props?: CheckoutCartBundleProps, state?: AnimatedCardState): ReactNode;
}
export interface ListProps {
}
export declare type ListPropType = Array<ListProps>;
export interface CheckoutCartBundleProps extends AnimatedCardProps {
    className?: string;
    item?: ListProps;
    index?: number;
    mandatoryProducts?: ListPropType;
    addonProducts?: ListPropType;
    productCount?: number;
    renderHeader?: CheckoutCartBundleRenderProp;
    renderList?: CheckoutCartBundleRenderProp;
    renderItem?: CheckoutCartBundleRenderProp;
}
export interface CheckoutCartBundleState extends AnimatedCardState {
}
export default CheckoutCartBundleProps;