File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,17 @@ export interface FocusManagerOptions {
8
8
* A callback fired when focus shifts. returning `false` will prevent
9
9
* handling the focus event
10
10
*/
11
- willHandle ( focused : boolean , event : React . FocusEvent ) : boolean | void
11
+ willHandle ? ( focused : boolean , event : React . FocusEvent ) : boolean | void
12
12
13
13
/**
14
14
* A callback fired after focus is handled but before onChange is called
15
15
*/
16
- didHandle ( focused : boolean , event : React . FocusEvent ) : void
16
+ didHandle ? ( focused : boolean , event : React . FocusEvent ) : void
17
17
18
18
/**
19
19
* A callback fired after focus has changed
20
20
*/
21
- onChange ( focused : boolean , event : React . FocusEvent ) : void
21
+ onChange ? ( focused : boolean , event : React . FocusEvent ) : void
22
22
23
23
/**
24
24
* When true, the event handlers will not report focus changes
You can’t perform that action at this time.
0 commit comments