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,21 @@
//#region src/fp/array/unzipWith.d.ts
/**
* Creates a function that unzips grouped arrays and combines values by position.
*
* Values at the same position are passed to iteratee, and its return values form the
* resulting array.
*
* @template T - The element type inside each grouped array.
* @template R - The value returned by the iteratee.
* @param iteratee - Called with the values at each position.
* @returns A function that maps grouped arrays to combined values.
*
* @example
* import { pipe, unzipWith } from 'es-toolkit/fp';
*
* pipe([[1, 10], [2, 20]], unzipWith((a, b) => a + b));
* // => [3, 30]
*/
declare function unzipWith<T, R>(iteratee: (...args: T[]) => R): (target: readonly T[][]) => R[];
//#endregion
export { unzipWith };