File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -290,18 +290,18 @@ declare abstract class AbstractControl {
290290 abstract reset ( value ?: any , options ?: Object ) : void ;
291291}
292292export interface FieldProps {
293- render : ( control : FormArray | FormControl | FormGroup ) => React . ReactElement < any > | React . ReactElement < any > [ ] ;
293+ render ? : ( control : FormArray | FormControl | FormGroup ) => React . ReactElement < any > | React . ReactElement < any > [ ] ;
294294 control : AbstractControl ;
295295}
296296export interface GroupProps {
297- strict : boolean ;
298- render : ( control : FormArray | FormControl | FormGroup ) => React . ReactElement < any > | React . ReactElement < any > [ ] ;
299- control : AbstractControl ;
300- name : string ;
301- index : number ;
302- formState : any ;
303- options : AbstractControlOptions ;
304- parent : AbstractControl ;
297+ strict ? : boolean ;
298+ render ? : ( control : FormArray | FormControl | FormGroup ) => React . ReactElement < any > | React . ReactElement < any > [ ] ;
299+ control ? : AbstractControl ;
300+ name ? : string ;
301+ index ? : number ;
302+ formState ? : any ;
303+ options ? : AbstractControlOptions ;
304+ parent ? : AbstractControl ;
305305}
306306declare module "react-reactive-form" {
307307 export class Field extends React . Component < FieldProps , any > { }
You can’t perform that action at this time.
0 commit comments