UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

10 lines (9 loc) 315 B
/** * Normalizes any number to an integer within inclusive range * * @param value * @param min lower inclusive integer * @param max upper inclusive integer * @return an integer between min and max inclusive */ export declare function tuiNormalizeToIntNumber(value: number, min: number, max: number): number;