UNPKG

ms-react-reactive-form

Version:

an implementation of the Reactive Form concept in React, supporting Javascript and Typescript

12 lines (11 loc) 271 B
import { Control, Group } from "./models"; export default class FormGroup implements Group { controls: { [key: string]: Control; }; validity: boolean; submited: boolean; constructor(ctrs: { [key: string]: Control; }); }