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
85
frontend/node_modules/es-toolkit/dist/compat/object/merge.d.ts
generated
vendored
Normal file
85
frontend/node_modules/es-toolkit/dist/compat/object/merge.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
//#region src/compat/object/merge.d.ts
|
||||
/**
|
||||
* Recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
|
||||
*
|
||||
* @template T
|
||||
* @template U
|
||||
* @param object - The destination object.
|
||||
* @param source - The source object.
|
||||
* @returns Returns `object`.
|
||||
*
|
||||
* @example
|
||||
* const object = { a: [{ b: 2 }, { d: 4 }] };
|
||||
* const other = { a: [{ c: 3 }, { e: 5 }] };
|
||||
* merge(object, other);
|
||||
* // => { a: [{ b: 2, c: 3 }, { d: 4, e: 5 }] }
|
||||
*/
|
||||
declare function merge<T, U>(object: T, source: U): T & U;
|
||||
/**
|
||||
* Recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
|
||||
*
|
||||
* @template T
|
||||
* @template U
|
||||
* @template V
|
||||
* @param object - The destination object.
|
||||
* @param source1 - The first source object.
|
||||
* @param source2 - The second source object.
|
||||
* @returns Returns `object`.
|
||||
*
|
||||
* @example
|
||||
* merge({ a: 1 }, { b: 2 }, { c: 3 });
|
||||
* // => { a: 1, b: 2, c: 3 }
|
||||
*/
|
||||
declare function merge<T, U, V>(object: T, source1: U, source2: V): T & U & V;
|
||||
/**
|
||||
* Recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
|
||||
*
|
||||
* @template T
|
||||
* @template U
|
||||
* @template V
|
||||
* @template W
|
||||
* @param object - The destination object.
|
||||
* @param source1 - The first source object.
|
||||
* @param source2 - The second source object.
|
||||
* @param source3 - The third source object.
|
||||
* @returns Returns `object`.
|
||||
*
|
||||
* @example
|
||||
* merge({ a: 1 }, { b: 2 }, { c: 3 }, { d: 4 });
|
||||
* // => { a: 1, b: 2, c: 3, d: 4 }
|
||||
*/
|
||||
declare function merge<T, U, V, W>(object: T, source1: U, source2: V, source3: W): T & U & V & W;
|
||||
/**
|
||||
* Recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
|
||||
*
|
||||
* @template T
|
||||
* @template U
|
||||
* @template V
|
||||
* @template W
|
||||
* @template X
|
||||
* @param object - The destination object.
|
||||
* @param source1 - The first source object.
|
||||
* @param source2 - The second source object.
|
||||
* @param source3 - The third source object.
|
||||
* @param source4 - The fourth source object.
|
||||
* @returns Returns `object`.
|
||||
*
|
||||
* @example
|
||||
* merge({ a: 1 }, { b: 2 }, { c: 3 }, { d: 4 }, { e: 5 });
|
||||
* // => { a: 1, b: 2, c: 3, d: 4, e: 5 }
|
||||
*/
|
||||
declare function merge<T, U, V, W, X>(object: T, source1: U, source2: V, source3: W, source4: X): T & U & V & W & X;
|
||||
/**
|
||||
* Recursively merges own and inherited enumerable string keyed properties of source objects into the destination object.
|
||||
*
|
||||
* @param object - The destination object.
|
||||
* @param otherArgs - The source objects.
|
||||
* @returns Returns `object`.
|
||||
*
|
||||
* @example
|
||||
* merge({ a: 1 }, { b: 2 }, { c: 3 });
|
||||
* // => { a: 1, b: 2, c: 3 }
|
||||
*/
|
||||
declare function merge(object: any, ...otherArgs: any[]): any;
|
||||
//#endregion
|
||||
export { merge };
|
||||
Loading…
Add table
Add a link
Reference in a new issue