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
33
frontend/node_modules/es-toolkit/dist/compat/array/invokeMap.d.ts
generated
vendored
Normal file
33
frontend/node_modules/es-toolkit/dist/compat/array/invokeMap.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
//#region src/compat/array/invokeMap.d.ts
|
||||
/**
|
||||
* Invokes the method at path of each element in collection.
|
||||
*
|
||||
* @param collection - The collection to iterate over.
|
||||
* @param methodName - The name of the method to invoke.
|
||||
* @param args - The arguments to invoke each method with.
|
||||
* @returns Returns the array of results.
|
||||
*
|
||||
* @example
|
||||
* invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');
|
||||
* // => [[1, 5, 7], [1, 2, 3]]
|
||||
*
|
||||
* invokeMap([123, 456], 'toString', 2);
|
||||
* // => ['1111011', '111001000']
|
||||
*/
|
||||
declare function invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
|
||||
/**
|
||||
* Invokes the method at path of each element in collection.
|
||||
*
|
||||
* @template R
|
||||
* @param collection - The collection to iterate over.
|
||||
* @param method - The method to invoke.
|
||||
* @param args - The arguments to invoke each method with.
|
||||
* @returns Returns the array of results.
|
||||
*
|
||||
* @example
|
||||
* invokeMap([5, 1, 7], Array.prototype.slice, 1);
|
||||
* // => [[], [], []]
|
||||
*/
|
||||
declare function invokeMap<R>(collection: object | null | undefined, method: (...args: any[]) => R, ...args: any[]): R[];
|
||||
//#endregion
|
||||
export { invokeMap };
|
||||
Loading…
Add table
Add a link
Reference in a new issue