Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/TooltipController/TooltipControllerTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import type {
export interface ITooltipController {
className?: string
classNameArrow?: string
content?: string
content?: string | JSX.Element
/**
* @deprecated Use `children` or `render` instead
*/
html?: string
html?: string | JSX.Element
render?: (render: { content: string | null; activeAnchor: HTMLElement | null }) => ChildrenType
place?: PlacesType
offset?: number
Expand Down