File tree 2 files changed +3
-3
lines changed
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> {
10
10
name ?: string ;
11
11
value ?: string | number ;
12
12
placeholder ?: string ;
13
- onChange : Function ;
14
- onKeyPress : Function ;
13
+ onChange ? : Function ;
14
+ onKeyPress ? : Function ;
15
15
}
16
16
export interface FormControl extends React . ReactElement < FormControlProps > { }
17
17
export interface FormControlClass extends React . ComponentClass < FormControlProps > {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import React = require("react");
5
5
// ----------------------------------------
6
6
export interface FormGroupProps extends React . Props < FormGroupClass > {
7
7
controlId : string ;
8
- validationState : string ;
8
+ validationState ? : string ;
9
9
}
10
10
export interface FormGroup extends React . ReactElement < FormGroupProps > { }
11
11
export interface FormGroupClass extends React . ComponentClass < FormGroupProps > { }
You can’t perform that action at this time.
0 commit comments