File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,16 @@ import { placements } from './placements';
77import Popup from './Popup' ;
88
99export interface TooltipProps
10- extends Pick < TriggerProps , 'onPopupAlign' | 'builtinPlacements' | 'fresh' > {
10+ extends Pick <
11+ TriggerProps ,
12+ | 'onPopupAlign'
13+ | 'builtinPlacements'
14+ | 'fresh'
15+ | 'children'
16+ | 'mouseLeaveDelay'
17+ | 'mouseEnterDelay'
18+ | 'prefixCls'
19+ > {
1120 trigger ?: ActionType | ActionType [ ] ;
1221 defaultVisible ?: boolean ;
1322 visible ?: boolean ;
@@ -23,16 +32,12 @@ export interface TooltipProps
2332 overlay : ( ( ) => React . ReactNode ) | React . ReactNode ;
2433 overlayStyle ?: React . CSSProperties ;
2534 overlayClassName ?: string ;
26- prefixCls ?: string ;
27- mouseEnterDelay ?: number ;
28- mouseLeaveDelay ?: number ;
2935 getTooltipContainer ?: ( node : HTMLElement ) => HTMLElement ;
3036 destroyTooltipOnHide ?: boolean ;
3137 align ?: AlignType ;
3238 showArrow ?: boolean | ArrowType ;
3339 arrowContent ?: React . ReactNode ;
3440 id ?: string ;
35- children ?: React . ReactElement ;
3641 overlayInnerStyle ?: React . CSSProperties ;
3742 zIndex ?: number ;
3843}
You can’t perform that action at this time.
0 commit comments