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
94
frontend/node_modules/es-toolkit/dist/compat/array/unionBy.d.ts
generated
vendored
Normal file
94
frontend/node_modules/es-toolkit/dist/compat/array/unionBy.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
import { ValueIteratee } from "../_internal/ValueIteratee.js";
|
||||
|
||||
//#region src/compat/array/unionBy.d.ts
|
||||
/**
|
||||
* This method is like `union` except that it accepts `iteratee` which is
|
||||
* invoked for each element of each `arrays` to generate the criterion by which
|
||||
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
||||
*
|
||||
* @template T
|
||||
* @param arrays - The arrays to inspect.
|
||||
* @param [iteratee] - The iteratee invoked per element.
|
||||
* @returns Returns the new array of combined values.
|
||||
*
|
||||
* @example
|
||||
* unionBy([2.1], [1.2, 2.3], Math.floor);
|
||||
* // => [2.1, 1.2]
|
||||
*
|
||||
* @example
|
||||
* unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
|
||||
* // => [{ 'x': 1 }, { 'x': 2 }]
|
||||
*/
|
||||
declare function unionBy<T>(arrays: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
||||
/**
|
||||
* This method is like `union` except that it accepts `iteratee` which is
|
||||
* invoked for each element of each `arrays` to generate the criterion by which
|
||||
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
||||
*
|
||||
* @template T
|
||||
* @param arrays1 - The first array to inspect.
|
||||
* @param arrays2 - The second array to inspect.
|
||||
* @param [iteratee] - The iteratee invoked per element.
|
||||
* @returns Returns the new array of combined values.
|
||||
*
|
||||
* @example
|
||||
* unionBy([2.1], [1.2, 2.3], Math.floor);
|
||||
* // => [2.1, 1.2]
|
||||
*/
|
||||
declare function unionBy<T>(arrays1: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
||||
/**
|
||||
* This method is like `union` except that it accepts `iteratee` which is
|
||||
* invoked for each element of each `arrays` to generate the criterion by which
|
||||
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
||||
*
|
||||
* @template T
|
||||
* @param arrays1 - The first array to inspect.
|
||||
* @param arrays2 - The second array to inspect.
|
||||
* @param arrays3 - The third array to inspect.
|
||||
* @param [iteratee] - The iteratee invoked per element.
|
||||
* @returns Returns the new array of combined values.
|
||||
*
|
||||
* @example
|
||||
* unionBy([2.1], [1.2, 2.3], [3.4], Math.floor);
|
||||
* // => [2.1, 1.2, 3.4]
|
||||
*/
|
||||
declare function unionBy<T>(arrays1: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, arrays3: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
||||
/**
|
||||
* This method is like `union` except that it accepts `iteratee` which is
|
||||
* invoked for each element of each `arrays` to generate the criterion by which
|
||||
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
||||
*
|
||||
* @template T
|
||||
* @param arrays1 - The first array to inspect.
|
||||
* @param arrays2 - The second array to inspect.
|
||||
* @param arrays3 - The third array to inspect.
|
||||
* @param arrays4 - The fourth array to inspect.
|
||||
* @param [iteratee] - The iteratee invoked per element.
|
||||
* @returns Returns the new array of combined values.
|
||||
*
|
||||
* @example
|
||||
* unionBy([2.1], [1.2, 2.3], [3.4], [4.5], Math.floor);
|
||||
* // => [2.1, 1.2, 3.4, 4.5]
|
||||
*/
|
||||
declare function unionBy<T>(arrays1: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, arrays3: ArrayLike<T> | null | undefined, arrays4: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
||||
/**
|
||||
* This method is like `union` except that it accepts `iteratee` which is
|
||||
* invoked for each element of each `arrays` to generate the criterion by which
|
||||
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
||||
*
|
||||
* @template T
|
||||
* @param arrays1 - The first array to inspect.
|
||||
* @param arrays2 - The second array to inspect.
|
||||
* @param arrays3 - The third array to inspect.
|
||||
* @param arrays4 - The fourth array to inspect.
|
||||
* @param arrays5 - The fifth array to inspect.
|
||||
* @param iteratee - The iteratee invoked per element.
|
||||
* @returns Returns the new array of combined values.
|
||||
*
|
||||
* @example
|
||||
* unionBy([2.1], [1.2, 2.3], [3.4], [4.5], [5.6], Math.floor);
|
||||
* // => [2.1, 1.2, 3.4, 4.5, 5.6]
|
||||
*/
|
||||
declare function unionBy<T>(arrays1: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, arrays3: ArrayLike<T> | null | undefined, arrays4: ArrayLike<T> | null | undefined, arrays5: ArrayLike<T> | null | undefined, ...iteratee: Array<ValueIteratee<T> | ArrayLike<T> | null | undefined>): T[];
|
||||
//#endregion
|
||||
export { unionBy };
|
||||
Loading…
Add table
Add a link
Reference in a new issue