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
32
frontend/node_modules/es-toolkit/dist/compat/array/some.d.ts
generated
vendored
Normal file
32
frontend/node_modules/es-toolkit/dist/compat/array/some.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import { ListIterateeCustom } from "../_internal/ListIterateeCustom.js";
|
||||
import { ObjectIterateeCustom } from "../_internal/ObjectIteratee.js";
|
||||
|
||||
//#region src/compat/array/some.d.ts
|
||||
/**
|
||||
* Checks if predicate returns truthy for any element of collection.
|
||||
*
|
||||
* @template T
|
||||
* @param collection - The collection to iterate over.
|
||||
* @param [predicate] - The function invoked per iteration.
|
||||
* @returns Returns `true` if any element passes the predicate check, else `false`.
|
||||
*
|
||||
* @example
|
||||
* some([null, 0, 'yes', false], Boolean);
|
||||
* // => true
|
||||
*/
|
||||
declare function some<T>(collection: ArrayLike<T> | null | undefined, predicate?: ListIterateeCustom<T, boolean>): boolean;
|
||||
/**
|
||||
* Checks if predicate returns truthy for any element of collection.
|
||||
*
|
||||
* @template T
|
||||
* @param collection - The object to iterate over.
|
||||
* @param [predicate] - The function invoked per iteration.
|
||||
* @returns Returns `true` if any element passes the predicate check, else `false`.
|
||||
*
|
||||
* @example
|
||||
* some({ 'a': 0, 'b': 1, 'c': 0 }, function(n) { return n > 0; });
|
||||
* // => true
|
||||
*/
|
||||
declare function some<T extends object>(collection: T | null | undefined, predicate?: ObjectIterateeCustom<T, boolean>): boolean;
|
||||
//#endregion
|
||||
export { some };
|
||||
Loading…
Add table
Add a link
Reference in a new issue