UNPKG

@manojadams/metaforms

Version:
10 lines (9 loc) 310 B
/// <reference types="react" /> import { IMultitextInput } from "../../constants/model-interfaces"; declare const MultitextField: (props: IProps) => JSX.Element; interface IProps { input: IMultitextInput; placeholder: string | undefined; update: Function; } export default MultitextField;