@e-group/material-form
Version:
Custom react components for integrate redux-form.
17 lines (16 loc) • 439 B
TypeScript
export default CheckboxField;
declare function CheckboxField({ input: { value, ...otherInput }, meta, ...other }: {
[x: string]: any;
input: {
[x: string]: any;
value: any;
};
meta: any;
}): JSX.Element;
declare namespace CheckboxField {
namespace propTypes {
const input: PropTypes.Validator<object>;
const meta: PropTypes.Validator<object>;
}
}
import PropTypes from "prop-types";