Skip to content

Commit

Permalink
chore: base, combined 타입 구분
Browse files Browse the repository at this point in the history
  • Loading branch information
hwinkr committed Aug 8, 2024
1 parent ddb73e2 commit 4000146
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/types/tooltip.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
export type TooltipPosition =
| 'top'
| 'left'
| 'right'
| 'bottom'
export type BasicPosition = 'top' | 'left' | 'right' | 'bottom';

export type CombinedPosition =
| 'topLeft'
| 'topRight'
| 'bottomLeft'
Expand All @@ -11,3 +9,5 @@ export type TooltipPosition =
| 'leftBottom'
| 'rightTop'
| 'rightBottom';

export type TooltipPosition = BasicPosition | CombinedPosition;

0 comments on commit 4000146

Please sign in to comment.