File tree Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Expand file tree Collapse file tree 1 file changed +19
-7
lines changed Original file line number Diff line number Diff line change 11import type { Middleware } from '../components/Tooltip/TooltipTypes'
22
33export interface IComputePositions {
4- elementReference ?: Element | HTMLElement | null
5- tooltipReference ?: Element | HTMLElement | null
6- tooltipArrowReference ?: Element | HTMLElement | null
7- place ?: 'top' | 'right' | 'bottom' | 'left'
8- offset ?: number
9- strategy ?: 'absolute' | 'fixed'
10- middlewares ?: Middleware [ ]
4+ elementReference ?: Element | HTMLElement | null ;
5+ tooltipReference ?: Element | HTMLElement | null ;
6+ tooltipArrowReference ?: Element | HTMLElement | null ;
7+ place ?:
8+ | 'top'
9+ | 'top-start'
10+ | 'top-end'
11+ | 'right'
12+ | 'right-start'
13+ | 'right-end'
14+ | 'bottom'
15+ | 'bottom-start'
16+ | 'bottom-end'
17+ | 'left'
18+ | 'left-start'
19+ | 'left-end' ;
20+ offset ?: number ;
21+ strategy ?: 'absolute' | 'fixed' ;
22+ middlewares ?: Middleware [ ] ;
1123}
You can’t perform that action at this time.
0 commit comments