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 React from 'react';
import { NO_OP } from 'exotic';
import { SingleShippingProps, SingleShippingState } from './typings';
import { defaultRenderHeaderView, defaultRenderExpandableView } from './renderProps';
import { SingleShippingInstance } from './state';
declare class SingleShipping extends React.Component<SingleShippingProps, SingleShippingState> {
    static defaultProps: {
        className: string;
        buttonDataQa: string;
        renderHeaderView: typeof defaultRenderHeaderView;
        renderExpandableView: typeof defaultRenderExpandableView;
        onShippingAddressChange: typeof NO_OP;
        onViewToggle: typeof NO_OP;
    };
    observableState: SingleShippingInstance;
    componentWillMount(): void;
    componentWillReceiveProps(nextProps: SingleShippingProps): void;
    render(): JSX.Element;
}
export { SingleShipping };
export default SingleShipping;