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
20
frontend/node_modules/es-toolkit/dist/array/pullAt.d.ts
generated
vendored
Normal file
20
frontend/node_modules/es-toolkit/dist/array/pullAt.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
//#region src/array/pullAt.d.ts
|
||||
/**
|
||||
* Removes elements from an array at specified indices and returns the removed elements.
|
||||
*
|
||||
* This function supports negative indices, which count from the end of the array.
|
||||
*
|
||||
* @template T
|
||||
* @param arr - The array from which elements will be removed.
|
||||
* @param indicesToRemove - An array of indices specifying the positions of elements to remove.
|
||||
* @returns An array containing the elements that were removed from the original array.
|
||||
*
|
||||
* @example
|
||||
* const numbers = [10, 20, 30, 40, 50];
|
||||
* const removed = pullAt(numbers, [1, 3, 4]);
|
||||
* console.log(removed); // [20, 40, 50]
|
||||
* console.log(numbers); // [10, 30]
|
||||
*/
|
||||
declare function pullAt<T>(arr: T[], indicesToRemove: number[]): T[];
|
||||
//#endregion
|
||||
export { pullAt };
|
||||
Loading…
Add table
Add a link
Reference in a new issue