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:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
39
frontend/node_modules/es-toolkit/dist/math/rangeRight.d.mts
generated
vendored
Normal file
39
frontend/node_modules/es-toolkit/dist/math/rangeRight.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
//#region src/math/rangeRight.d.ts
|
||||
/**
|
||||
* Returns an array of numbers from `end` (exclusive) to `0` (inclusive), decrementing by `1`.
|
||||
*
|
||||
* @param end - The end number of the range (exclusive).
|
||||
* @returns An array of numbers from `end` (exclusive) to `0` (inclusive) with a step of `1`.
|
||||
*
|
||||
* @example
|
||||
* // Returns [3, 2, 1, 0]
|
||||
* rangeRight(4);
|
||||
*/
|
||||
declare function rangeRight(end: number): number[];
|
||||
/**
|
||||
* Returns an array of numbers from `end` (exclusive) to `start` (inclusive), decrementing by `1`.
|
||||
*
|
||||
* @param start - The starting number of the range (inclusive).
|
||||
* @param end - The end number of the range (exclusive).
|
||||
* @returns An array of numbers from `end` (exclusive) to `start` (inclusive) with a step of `1`.
|
||||
*
|
||||
* @example
|
||||
* // Returns [3, 2, 1]
|
||||
* rangeRight(1, 4);
|
||||
*/
|
||||
declare function rangeRight(start: number, end: number): number[];
|
||||
/**
|
||||
* Returns an array of numbers from `end` (exclusive) to `start` (inclusive), decrementing by `step`.
|
||||
*
|
||||
* @param start - The starting number of the range (inclusive).
|
||||
* @param end - The end number of the range (exclusive).
|
||||
* @param step - The step value for the range.
|
||||
* @returns An array of numbers from `end` (exclusive) to `start` (inclusive) with the specified `step`.
|
||||
*
|
||||
* @example
|
||||
* // Returns [15, 10, 5, 0]
|
||||
* rangeRight(0, 20, 5);
|
||||
*/
|
||||
declare function rangeRight(start: number, end: number, step: number): number[];
|
||||
//#endregion
|
||||
export { rangeRight };
|
||||
Loading…
Add table
Add a link
Reference in a new issue