FrontPastel/node_modules/@mui/utils/clamp/clamp.d.ts

3 lines
95 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
declare function clamp(val: number, min?: number, max?: number): number;
export default clamp;