@manojadams/metaforms
Version:
Meta-data driven forms
21 lines (20 loc) • 615 B
TypeScript
/// <reference types="react" />
import { IError } from "../../constants/common-interface";
import MetaForm from "../../constants/MetaForm";
import { IConfig, IMeta } from "../../constants/model-interfaces";
export declare function MandatoryLabel(): JSX.Element;
export declare function Search(props: IProps): JSX.Element;
interface IProps {
name: string;
form: IMeta;
variant: string;
config: IConfig;
label: string;
loading: boolean;
handleChange: Function;
handleValidation: Function;
context: MetaForm;
section: string;
error: IError;
}
export {};