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 @@ -93,7 +93,7 @@ declare class Popover extends PopoverPositionMixin(
93
93
* Sets the default hover delay to be used by all popover instances,
94
94
* except for those that have hover delay configured using property.
95
95
*/
96
- static setDefaultHoverDelay ( delay : number ) : void ;
96
+ static setDefaultHoverDelay ( hoverDelay : number ) : void ;
97
97
98
98
/**
99
99
* String used to label the overlay to screen reader users.
Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ class Popover extends PopoverPositionMixin(
415
415
* Sets the default focus delay to be used by all popover instances,
416
416
* except for those that have focus delay configured using property.
417
417
*
418
- * @param {number } delay
418
+ * @param {number } focusDelay
419
419
*/
420
420
static setDefaultFocusDelay ( focusDelay ) {
421
421
defaultFocusDelay = focusDelay != null && focusDelay >= 0 ? focusDelay : DEFAULT_DELAY ;
@@ -435,7 +435,7 @@ class Popover extends PopoverPositionMixin(
435
435
* Sets the default hover delay to be used by all popover instances,
436
436
* except for those that have hover delay configured using property.
437
437
*
438
- * @param {number } delay
438
+ * @param {number } hoverDelay
439
439
*/
440
440
static setDefaultHoverDelay ( hoverDelay ) {
441
441
defaultHoverDelay = hoverDelay != null && hoverDelay >= 0 ? hoverDelay : DEFAULT_DELAY ;
You can’t perform that action at this time.
0 commit comments