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
18
frontend/node_modules/es-toolkit/dist/fp/array/length.d.mts
generated
vendored
Normal file
18
frontend/node_modules/es-toolkit/dist/fp/array/length.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
//#region src/fp/array/length.d.ts
|
||||
/**
|
||||
* Creates a function that returns the length of an array.
|
||||
*
|
||||
* Use it with {@link pipe} when a pipeline should end with the number of input values.
|
||||
*
|
||||
* @template T - The type of elements in the array.
|
||||
* @returns A function that maps a readonly array to its length.
|
||||
*
|
||||
* @example
|
||||
* import { length, pipe } from 'es-toolkit/fp';
|
||||
*
|
||||
* pipe(['a', 'b', 'c'], length());
|
||||
* // => 3
|
||||
*/
|
||||
declare function length<T>(): (array: readonly T[]) => number;
|
||||
//#endregion
|
||||
export { length };
|
||||
Loading…
Add table
Add a link
Reference in a new issue