export type Positions = 'top' | 'bottom' | 'left' | 'right'; export enum EnumPositions { Top = 'top', Bottom = 'bottom', Left = 'left', Right = 'right' }