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
51
frontend/node_modules/es-toolkit/dist/compat/array/pullAt.d.ts
generated
vendored
Normal file
51
frontend/node_modules/es-toolkit/dist/compat/array/pullAt.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
import { MutableList } from "../_internal/MutableList.js";
|
||||
import { RejectReadonly } from "../_internal/RejectReadonly.js";
|
||||
import { Many } from "../_internal/Many.js";
|
||||
|
||||
//#region src/compat/array/pullAt.d.ts
|
||||
/**
|
||||
* Removes elements from array corresponding to the given indexes and returns an array of the removed elements.
|
||||
* Indexes may be specified as an array of indexes or as individual arguments.
|
||||
*
|
||||
* **Note:** Unlike `_.at`, this method mutates `array`.
|
||||
*
|
||||
* @template T
|
||||
* @param array - The array to modify.
|
||||
* @param indexes - The indexes of elements to remove, specified as individual indexes or arrays of indexes.
|
||||
* @returns Returns the new array of removed elements.
|
||||
*
|
||||
* @example
|
||||
* var array = [5, 10, 15, 20];
|
||||
* var evens = pullAt(array, 1, 3);
|
||||
*
|
||||
* console.log(array);
|
||||
* // => [5, 15]
|
||||
*
|
||||
* console.log(evens);
|
||||
* // => [10, 20]
|
||||
*/
|
||||
declare function pullAt<T>(array: T[], ...indexes: Array<Many<number>>): T[];
|
||||
/**
|
||||
* Removes elements from array corresponding to the given indexes and returns an array of the removed elements.
|
||||
* Indexes may be specified as an array of indexes or as individual arguments.
|
||||
*
|
||||
* **Note:** Unlike `_.at`, this method mutates `array`.
|
||||
*
|
||||
* @template L
|
||||
* @param array - The array to modify.
|
||||
* @param indexes - The indexes of elements to remove, specified as individual indexes or arrays of indexes.
|
||||
* @returns Returns the new array of removed elements.
|
||||
*
|
||||
* @example
|
||||
* var array = [5, 10, 15, 20];
|
||||
* var evens = pullAt(array, 1, 3);
|
||||
*
|
||||
* console.log(array);
|
||||
* // => [5, 15]
|
||||
*
|
||||
* console.log(evens);
|
||||
* // => [10, 20]
|
||||
*/
|
||||
declare function pullAt<L extends MutableList<any>>(array: RejectReadonly<L>, ...indexes: Array<Many<number>>): L;
|
||||
//#endregion
|
||||
export { pullAt };
|
||||
Loading…
Add table
Add a link
Reference in a new issue