UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 457 B
/** * Returns the unit of measurement for a single step relative to the given value * * Возвращает единицу измерения одного шага относительно заданного значения * @param min minimum value/ минимальное значение * @param max maximum value/ максимальное значение */ export declare function getStepValue(min: number | undefined, max: number): number;