Repository URL to install this package:
|
Version:
2.7.11 ▾
|
import { ShippingAddressCardProps as ShippingAddressCardPlaceholderProps } from 'abstractions/Checkout/ShippingAddressCard';
import { SelectableItem } from 'src/state/SelectionState';
export interface ShippingAddressCardRemainingProps {
title?: string;
buttonLabel?: string;
buttonDataQa?: string;
}
export interface ClickHandler extends Function {
(event: Event, item: SelectableItem, this: any): void;
}
export interface ShippingAddressCardProps extends ShippingAddressCardPlaceholderProps, ShippingAddressCardRemainingProps {
onToggleChange?: ClickHandler;
onFormBlur?: ClickHandler;
}