@fakel/rest-admin
Version:
An application that makes it easier to work with your API
10 lines (9 loc) • 365 B
TypeScript
import React from 'react';
import { FieldConfig, FormikProps, FieldProps } from 'formik';
export interface InputProps extends FieldConfig {
component?: any;
componentChildren?: (value: any) => any;
children?: (form: FormikProps<any>, field: FieldProps, meta: any) => any;
}
declare const CoreInput: React.FC<InputProps & any>;
export default CoreInput;