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
26
frontend/node_modules/es-toolkit/dist/compat/util/uniqueId.d.mts
generated
vendored
Normal file
26
frontend/node_modules/es-toolkit/dist/compat/util/uniqueId.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
//#region src/compat/util/uniqueId.d.ts
|
||||
/**
|
||||
* Generates a unique identifier, optionally prefixed with a given string.
|
||||
*
|
||||
* @param [prefix] - An optional string to prefix the unique identifier.
|
||||
* If not provided or not a string, only the unique
|
||||
* numeric identifier is returned.
|
||||
* @returns A string containing the unique identifier, with the optional
|
||||
* prefix if provided.
|
||||
*
|
||||
* @example
|
||||
* // Generate a unique ID with a prefix
|
||||
* uniqueId('user_'); // => 'user_1'
|
||||
*
|
||||
* @example
|
||||
* // Generate a unique ID without a prefix
|
||||
* uniqueId(); // => '2'
|
||||
*
|
||||
* @example
|
||||
* // Subsequent calls increment the internal counter
|
||||
* uniqueId('item_'); // => 'item_3'
|
||||
* uniqueId(); // => '4'
|
||||
*/
|
||||
declare function uniqueId(prefix?: string): string;
|
||||
//#endregion
|
||||
export { uniqueId };
|
||||
Loading…
Add table
Add a link
Reference in a new issue