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 9b76253279
commit fc0a9fdbf1

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,