/** * @file /src/constants/direction.ts * @name Direction * @description Defines constants for directions */ export const POSITIVE_SIGN = 1 as const; export const NEGATIVE_SIGN = -1 as const;