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/object/mapKeys.d.mts
generated
vendored
Normal file
32
frontend/node_modules/es-toolkit/dist/compat/object/mapKeys.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import { ListIteratee } from "../_internal/ListIteratee.mjs";
|
||||
import { ObjectIteratee } from "../_internal/ObjectIteratee.mjs";
|
||||
|
||||
//#region src/compat/object/mapKeys.d.ts
|
||||
/**
|
||||
* Creates an object with the same values as `object` and keys generated by running each own enumerable string keyed property through `iteratee`.
|
||||
*
|
||||
* @template T
|
||||
* @param object - The object to iterate over.
|
||||
* @param [iteratee] - The function invoked per iteration.
|
||||
* @returns Returns the new mapped object.
|
||||
*
|
||||
* @example
|
||||
* mapKeys([1, 2, 3], (value, index) => `key${index}`);
|
||||
* // => { 'key0': 1, 'key1': 2, 'key2': 3 }
|
||||
*/
|
||||
declare function mapKeys<T>(object: ArrayLike<T> | null | undefined, iteratee?: ListIteratee<T>): Record<string, T>;
|
||||
/**
|
||||
* Creates an object with the same values as `object` and keys generated by running each own enumerable string keyed property through `iteratee`.
|
||||
*
|
||||
* @template T
|
||||
* @param object - The object to iterate over.
|
||||
* @param [iteratee] - The function invoked per iteration.
|
||||
* @returns Returns the new mapped object.
|
||||
*
|
||||
* @example
|
||||
* mapKeys({ a: 1, b: 2 }, (value, key) => key + value);
|
||||
* // => { 'a1': 1, 'b2': 2 }
|
||||
*/
|
||||
declare function mapKeys<T extends object>(object: T | null | undefined, iteratee?: ObjectIteratee<T>): Record<string, T[keyof T]>;
|
||||
//#endregion
|
||||
export { mapKeys };
|
||||
Loading…
Add table
Add a link
Reference in a new issue