import * as React from 'react'; import { Omit } from '../_util/type'; import { WrappedFormInternalProps } from './Form'; // Heavily copied from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/hoist-non-react-statics/index.d.ts // tslint:disable-next-line:class-name interface REACT_STATICS { childContextTypes: true; contextType: true; contextTypes: true; defaultProps: true; displayName: true; getDefaultProps: true; getDerivedStateFromError: true; getDerivedStateFromProps: true; mixins: true; propTypes: true; type: true; } // tslint:disable-next-line:class-name interface KNOWN_STATICS { name: true; length: true; prototype: true; caller: true; callee: true; arguments: true; arity: true; } // tslint:disable-next-line:class-name interface MEMO_STATICS { $$typeof: true; compare: true; defaultProps: true; displayName: true; propTypes: true; type: true; } // tslint:disable-next-line:class-name interface FORWARD_REF_STATICS { $$typeof: true; render: true; defaultProps: true; displayName: true; propTypes: true; } type NonReactStatics< S extends React.ComponentType, C extends { [key: string]: true; } = {} > = { [key in Exclude< keyof S, S extends React.MemoExoticComponent ? keyof MEMO_STATICS | keyof C : S extends React.ForwardRefExoticComponent ? keyof FORWARD_REF_STATICS | keyof C : keyof REACT_STATICS | keyof KNOWN_STATICS | keyof C >]: S[key]; }; // Copy from @types/react-redux https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-redux/index.d.ts export type Matching = { [P in keyof DecorationTargetProps]: P extends keyof InjectedProps ? InjectedProps[P] extends DecorationTargetProps[P] ? DecorationTargetProps[P] : InjectedProps[P] : DecorationTargetProps[P]; }; export type GetProps = C extends React.ComponentType ? P : never; export type ConnectedComponentClass, P> = React.ComponentClass< JSX.LibraryManagedAttributes > & NonReactStatics & { WrappedComponent: C; }; export type FormWrappedProps = < C extends React.ComponentType>> >( component: C, ) => ConnectedComponentClass>;