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,28 @@
//#region src/math/inRange.d.ts
/**
* Checks if the value is less than the maximum.
*
* @param value The value to check.
* @param maximum The upper bound of the range (exclusive).
* @returns `true` if the value is less than the maximum, otherwise `false`.
*
* @example
* const result = inRange(3, 5); // result will be true.
* const result2 = inRange(5, 5); // result2 will be false.
*/
declare function inRange(value: number, maximum: number): boolean;
/**
* Checks if the value is within the range defined by minimum (inclusive) and maximum (exclusive).
*
* @param value The value to check.
* @param minimum The lower bound of the range (inclusive).
* @param maximum The upper bound of the range (exclusive).
* @returns `true` if the value is within the specified range, otherwise `false`.
*
* @example
* const result = inRange(3, 2, 5); // result will be true.
* const result2 = inRange(1, 2, 5); // result2 will be false.
*/
declare function inRange(value: number, minimum: number, maximum: number): boolean;
//#endregion
export { inRange };