fix: typo in PositionType value (#1444)

This commit is contained in:
Slexom 2021-05-04 00:13:54 +02:00 committed by Xiaoji Chen
parent 6a94b7a5f1
commit cde435face

View File

@ -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<PositionType, {
x: number,