Skip to content

Commit b5ba13a

Browse files
authored
Update compute-positions-types.d.ts
removed semi-colons
1 parent 625e655 commit b5ba13a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import type { Middleware } from '../components/Tooltip/TooltipTypes'
22

33
export interface IComputePositions {
4-
elementReference?: Element | HTMLElement | null;
5-
tooltipReference?: Element | HTMLElement | null;
6-
tooltipArrowReference?: Element | HTMLElement | null;
4+
elementReference?: Element | HTMLElement | null
5+
tooltipReference?: Element | HTMLElement | null
6+
tooltipArrowReference?: Element | HTMLElement | null
77
place?:
88
| 'top'
99
| 'top-start'
@@ -17,7 +17,7 @@ export interface IComputePositions {
1717
| 'left'
1818
| 'left-start'
1919
| 'left-end';
20-
offset?: number;
21-
strategy?: 'absolute' | 'fixed';
22-
middlewares?: Middleware[];
20+
offset?: number
21+
strategy?: 'absolute' | 'fixed'
22+
middlewares?: Middleware[]
2323
}

0 commit comments

Comments
 (0)