From cde435facef153c35ceaedbfc0b3d4faf014049b Mon Sep 17 00:00:00 2001 From: Slexom Date: Tue, 4 May 2021 00:13:54 +0200 Subject: [PATCH] fix: typo in PositionType value (#1444) --- src/utils/dynamic-position.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/dynamic-position.d.ts b/src/utils/dynamic-position.d.ts index 942c3d95..75c27ba1 100644 --- a/src/utils/dynamic-position.d.ts +++ b/src/utils/dynamic-position.d.ts @@ -1,4 +1,4 @@ -export type PositionType = 'top' | 'top-left' | 'top-right' | 'bottom' | 'bottom-left' | 'bottem-right' | 'left' | 'right'; +export type PositionType = 'top' | 'top-left' | 'top-right' | 'bottom' | 'bottom-left' | 'bottom-right' | 'left' | 'right'; export const ANCHOR_POSITION: Record