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/forms / build / dist / new-forms / forms / ObserverForm.d.ts
Size: Mime:
import * as React from 'react';
import { ValidationStrategy } from '../strategies';
import { FormProps } from './typings';
export declare class ObserverForm extends React.Component<FormProps> {
    static defaultProps: {
        renderForm: (props: any) => any;
        renderButtonGroup: (props: any) => any;
    };
    static contextType: any;
    context: ValidationStrategy;
    handleSubmit: (event: any) => void;
    render(): any;
}