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:
jtricerolph 2026-07-20 14:37:36 +00:00
parent cae411eae7
commit 1c411e402e
19809 changed files with 1962608 additions and 97 deletions

View file

@ -0,0 +1,32 @@
import { ListIteratee } from "../_internal/ListIteratee.js";
import { ObjectIteratee } from "../_internal/ObjectIteratee.js";
//#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 };