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
23
frontend/node_modules/es-toolkit/dist/function/identity.d.mts
generated
vendored
Normal file
23
frontend/node_modules/es-toolkit/dist/function/identity.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
//#region src/function/identity.d.ts
|
||||
/**
|
||||
* Returns the input value unchanged.
|
||||
*
|
||||
* @template T - The type of the input value.
|
||||
* @param x - The value to be returned.
|
||||
* @returns The input value.
|
||||
*
|
||||
* @example
|
||||
* // Returns 5
|
||||
* identity(5);
|
||||
*
|
||||
* @example
|
||||
* // Returns 'hello'
|
||||
* identity('hello');
|
||||
*
|
||||
* @example
|
||||
* // Returns { key: 'value' }
|
||||
* identity({ key: 'value' });
|
||||
*/
|
||||
declare function identity<T>(x: T): T;
|
||||
//#endregion
|
||||
export { identity };
|
||||
Loading…
Add table
Add a link
Reference in a new issue