office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 583 B
JavaScript
module.exports = "import * as React from 'react';\nimport { Tooltip } from './Tooltip';\nimport { ITooltipProps } from '../../index';\n\n/**\n * Tooltip component props.\n */\n\nexport interface ITooltipHostProps extends React.Props<Tooltip> {\n /**\n * Properties to pass through for Callout, reference detail properties in ITooltipProps\n */\n calloutProps?: ITooltipProps;\n\n /**\n * Number of milliseconds to wait before showing the tooltip\n * @default 1000\n */\n delay?: number;\n\n /**\n * String to be passed to the tooltip\n */\n content?: string;\n}";