Type Alias: DriverHint
ts
type DriverHint = {
beacon?: HintBeacon;
data?: Record<string, any>;
element: string | Element | (() => Element);
id?: string;
onDismiss?: HintHook;
onOpen?: HintHook;
popover?: HintPopover;
};Properties
| Property | Type |
|---|---|
beacon? | HintBeacon |
data? | Record<string, any> |
element | string | Element | (() => Element) |
id? | string |
onDismiss? | HintHook |
onOpen? | HintHook |
popover? | HintPopover |