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    
@skava/packages / features / GiftCard / Forms / FormView.d.ts
Size: Mime:
/// <reference types="react" />
import { ObserverForm } from '@skava/packages/ui/forms';
import giftCardFormState from './FormState';
declare class GiftCardForm extends ObserverForm {
    static defaultProps: {
        state: import("./FormState").GiftCardState;
    };
    formClassName: any;
    defaultSubmitButtonLabel: any;
    submitDataQa: any;
    isCancelButtonNeeded: boolean;
    handleSubmit: (event: import("react").FormEvent<Element>) => void;
}
export default GiftCardForm;
export { giftCardFormState, GiftCardForm as GiftCardFormView };