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
27
frontend/node_modules/es-toolkit/dist/math/randomInt.d.mts
generated
vendored
Normal file
27
frontend/node_modules/es-toolkit/dist/math/randomInt.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
//#region src/math/randomInt.d.ts
|
||||
/**
|
||||
* Generates a random integer between 0 (inclusive) and the given maximum (exclusive).
|
||||
*
|
||||
* @param maximum - The upper bound (exclusive).
|
||||
* @returns A random integer between 0 (inclusive) and maximum (exclusive).
|
||||
* @throws {Error} Throws an error if `maximum` is not greater than `0`.
|
||||
*
|
||||
* @example
|
||||
* const result = randomInt(5); // result will be a random integer between 0 (inclusive) and 5 (exclusive)
|
||||
*/
|
||||
declare function randomInt(maximum: number): number;
|
||||
/**
|
||||
* Generates a random integer between minimum (inclusive) and maximum (exclusive).
|
||||
*
|
||||
* @param minimum - The lower bound (inclusive).
|
||||
* @param maximum - The upper bound (exclusive).
|
||||
* @returns A random integer between minimum (inclusive) and maximum (exclusive).
|
||||
* @throws {Error} Throws an error if `maximum` is not greater than `minimum`.
|
||||
*
|
||||
* @example
|
||||
* const result = randomInt(0, 5); // result will be a random integer between 0 (inclusive) and 5 (exclusive)
|
||||
* const result2 = randomInt(5, 0); // This will throw an error
|
||||
*/
|
||||
declare function randomInt(minimum: number, maximum: number): number;
|
||||
//#endregion
|
||||
export { randomInt };
|
||||
Loading…
Add table
Add a link
Reference in a new issue