UNPKG

tgui-angular

Version:

🚀 Angular UI library for Telegram Web Apps with modern components and theming support | 💼 Author is open to work opportunities | 📧 Contact: a.blagovestnov@gmail.com | 💬 Telegram: @ablagovestnov

9 lines (8 loc) • 272 B
/** * Clamps a value between a minimum and maximum value. * @param value The value to clamp * @param min The minimum value * @param max The maximum value * @returns The clamped value */ export declare function clamp(value: number, min: number, max: number): number;