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,25 @@
import { WindowedOptions } from "../../array/windowed.js";
//#region src/fp/array/windowed.d.ts
/**
* Creates a function that returns sliding windows from an array.
*
* By default only full windows are returned. Pass partialWindows: true to include shorter
* trailing windows. The full-window form is lazy-capable inside {@link pipe}.
*
* @template T - The type of elements in the array.
* @param size - The size of each window. Must be a positive integer.
* @param step - The step between window starts. Defaults to 1.
* @param options - Window options.
* @returns A function that maps a readonly array to sliding windows.
* @throws {Error} When size or step is not a positive integer.
*
* @example
* import { pipe, windowed } from 'es-toolkit/fp';
*
* pipe([1, 2, 3, 4], windowed(2));
* // => [[1, 2], [2, 3], [3, 4]]
*/
declare function windowed<T>(size: number, step?: number, options?: WindowedOptions): (array: readonly T[]) => T[][];
//#endregion
export { windowed };