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
27
frontend/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.mts
generated
vendored
Normal file
27
frontend/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
//#region src/compat/predicate/isObjectLike.d.ts
|
||||
/**
|
||||
* Checks if the given value is object-like.
|
||||
*
|
||||
* A value is object-like if its type is object and it is not null.
|
||||
*
|
||||
* This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to an object-like value.
|
||||
*
|
||||
* @param value - The value to test if it is an object-like.
|
||||
* @returns `true` if the value is an object-like, `false` otherwise.
|
||||
*
|
||||
* @example
|
||||
* const value1 = { a: 1 };
|
||||
* const value2 = [1, 2, 3];
|
||||
* const value3 = 'abc';
|
||||
* const value4 = () => {};
|
||||
* const value5 = null;
|
||||
*
|
||||
* console.log(isObjectLike(value1)); // true
|
||||
* console.log(isObjectLike(value2)); // true
|
||||
* console.log(isObjectLike(value3)); // false
|
||||
* console.log(isObjectLike(value4)); // false
|
||||
* console.log(isObjectLike(value5)); // false
|
||||
*/
|
||||
declare function isObjectLike(value?: any): boolean;
|
||||
//#endregion
|
||||
export { isObjectLike };
|
||||
Loading…
Add table
Add a link
Reference in a new issue