File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ export interface FormControlProps extends React.Props<FormControlClass> {
1010 name ?: string ;
1111 value ?: string | number ;
1212 placeholder ?: string ;
13- onChange : Function ;
14- onKeyPress : Function ;
13+ onChange ? : Function ;
14+ onKeyPress ? : Function ;
1515}
1616export interface FormControl extends React . ReactElement < FormControlProps > { }
1717export interface FormControlClass extends React . ComponentClass < FormControlProps > {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import React = require("react");
55// ----------------------------------------
66export interface FormGroupProps extends React . Props < FormGroupClass > {
77 controlId : string ;
8- validationState : string ;
8+ validationState ? : string ;
99}
1010export interface FormGroup extends React . ReactElement < FormGroupProps > { }
1111export interface FormGroupClass extends React . ComponentClass < FormGroupProps > { }
You can’t perform that action at this time.
0 commit comments