Add settings page for managing forecasting API key and URL via UI

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-20 14:37:36 +00:00
parent cae411eae7
commit 1c411e402e
19809 changed files with 1962608 additions and 97 deletions

View file

@ -0,0 +1,27 @@
//#region src/compat/math/clamp.d.ts
/**
* Clamps a number within the specified bounds.
*
* @param number The number to clamp
* @param lower The lower bound
* @param upper The upper bound
* @returns Returns the clamped number
* @example
* clamp(3, 2, 4) // => 3
* clamp(0, 5, 10) // => 5
* clamp(15, 5, 10) // => 10
*/
declare function clamp(number: number, lower: number, upper: number): number;
/**
* Clamps a number to an upper bound.
*
* @param number The number to clamp
* @param upper The upper bound
* @returns Returns the clamped number
* @example
* clamp(5, 3) // => 3
* clamp(2, 3) // => 2
*/
declare function clamp(number: number, upper: number): number;
//#endregion
export { clamp };