tooltip errors in d.ts

pull/1952/head
Tuğçe Küçükoğlu 2022-01-06 16:02:50 +03:00 committed by Tuğçe Küçükoğlu
parent 54b16a1c84
commit 776667ba27
2 changed files with 4 additions and 4 deletions

View File

@ -11,13 +11,13 @@ export interface DockTooltipOptions {
* Event to show the tooltip, valid values are hover and focus.
* @see DockTooltipEventType
*/
event: DockTooltipEventType;
event: string;
/**
* Position of element.
* @see DockPositionType
* Default value is 'bottom'.
*/
position: DockPositionType;
position: string;
/**
* Optional options.
*/

View File

@ -15,13 +15,13 @@ export interface SpeedDialTooltipOptions {
* Event to show the tooltip, valid values are hover and focus.
* @see SpeedDialTooltipEventType
*/
event: SpeedDialTooltipEventType;
event: string;
/**
* Position of element.
* @see SpeedDialTooltipPositionType
* Default value is 'bottom'.
*/
position: SpeedDialTooltipPositionType;
position: string;
/**
* Optional options.
*/