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
13
frontend/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.ts
generated
vendored
Normal file
13
frontend/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { EmptyObjectOf } from "../_internal/EmptyObjectOf.js";
|
||||
|
||||
//#region src/compat/predicate/isEmpty.d.ts
|
||||
declare function isEmpty<T extends {
|
||||
__trapAny: any;
|
||||
}>(value?: T): boolean;
|
||||
declare function isEmpty(value: string): value is '';
|
||||
declare function isEmpty(value: Map<any, any> | Set<any> | ArrayLike<any> | null | undefined): boolean;
|
||||
declare function isEmpty(value: object): boolean;
|
||||
declare function isEmpty<T extends object>(value: T | null | undefined): value is EmptyObjectOf<T> | null | undefined;
|
||||
declare function isEmpty(value?: any): boolean;
|
||||
//#endregion
|
||||
export { isEmpty };
|
||||
Loading…
Add table
Add a link
Reference in a new issue