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 } 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
}