office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 832 B
JavaScript
module.exports = "import * as React from 'react';\nimport { TooltipHost } from './TooltipHost';\nimport { ITooltipProps, TooltipDelay } from '../../index';\nimport { DirectionalHint } from '../../common/DirectionalHint';\n\n/**\n * Tooltip component props.\n */\n\nexport interface ITooltipHostProps extends React.HTMLProps<HTMLDivElement | TooltipHost> {\n /**\n * Properties to pass through for Callout, reference detail properties in ITooltipProps\n */\n calloutProps?: ITooltipProps;\n\n /**\n * Length of delay\n * @default medium\n */\n delay?: TooltipDelay;\n\n /**\n * String to be passed to the tooltip\n */\n content?: string;\n\n /**\n * Indicator of how the tooltip should be anchored to its targetElement.\n * @default DirectionalHint.topCenter\n */\n directionalHint?: DirectionalHint;\n}";