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
21
frontend/node_modules/es-toolkit/dist/compat/object/functionsIn.d.ts
generated
vendored
Normal file
21
frontend/node_modules/es-toolkit/dist/compat/object/functionsIn.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
//#region src/compat/object/functionsIn.d.ts
|
||||
/**
|
||||
* Returns an array of property names whose values are functions, including inherited properties.
|
||||
*
|
||||
* @param object The object to inspect.
|
||||
* @returns Returns the function names.
|
||||
* @example
|
||||
*
|
||||
* function Foo() {
|
||||
* this.a = function() { return 'a'; };
|
||||
* this.b = function() { return 'b'; };
|
||||
* }
|
||||
*
|
||||
* Foo.prototype.c = function() { return 'c'; };
|
||||
*
|
||||
* functionsIn(new Foo);
|
||||
* // => ['a', 'b', 'c']
|
||||
*/
|
||||
declare function functionsIn<T extends {}>(object: any): string[];
|
||||
//#endregion
|
||||
export { functionsIn };
|
||||
Loading…
Add table
Add a link
Reference in a new issue