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 { ShippingAddressCardProps as ShippingAddressCardPlaceholderProps } from 'abstractions/Checkout/ShippingAddressCard';
import { SelectableItem, SelectableState } from '@skava/ui/dist/state/SelectionState';
export interface ShippingAddressCardRemainingProps {
    title?: string;
    buttonLabel?: string;
    buttonDataQa?: string;
}
export interface ClickHandler extends Function {
    (event: Event, item: SelectableItem, selectStateThis: SelectableState): void;
}
export interface ShippingAddressCardProps extends ShippingAddressCardPlaceholderProps, ShippingAddressCardRemainingProps {
    onToggleChange?: ClickHandler;
    onFormBlur?: ClickHandler;
}