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
38
frontend/node_modules/es-toolkit/dist/array/orderBy.d.mts
generated
vendored
Normal file
38
frontend/node_modules/es-toolkit/dist/array/orderBy.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
//#region src/array/orderBy.d.ts
|
||||
/**
|
||||
* Sorts an array of objects based on the given `criteria` and their corresponding order directions.
|
||||
*
|
||||
* - If you provide keys, it sorts the objects by the values of those keys.
|
||||
* - If you provide functions, it sorts based on the values returned by those functions.
|
||||
*
|
||||
* The function returns the array of objects sorted in corresponding order directions.
|
||||
* If two objects have the same value for the current criterion, it uses the next criterion to determine their order.
|
||||
* If the number of orders is less than the number of criteria, it uses the last order for the rest of the criteria.
|
||||
*
|
||||
* @template T - The type of elements in the array.
|
||||
* @param arr - The array of objects to be sorted.
|
||||
* @param criteria - The criteria for sorting. This can be an array of object keys or functions that return values used for sorting.
|
||||
* @param orders - An array of order directions ('asc' for ascending or 'desc' for descending).
|
||||
* @returns The sorted array.
|
||||
*
|
||||
* @example
|
||||
* // Sort an array of objects by 'user' in ascending order and 'age' in descending order.
|
||||
* const users = [
|
||||
* { user: 'fred', age: 48 },
|
||||
* { user: 'barney', age: 34 },
|
||||
* { user: 'fred', age: 40 },
|
||||
* { user: 'barney', age: 36 },
|
||||
* ];
|
||||
*
|
||||
* const result = orderBy(users, [obj => obj.user, 'age'], ['asc', 'desc']);
|
||||
* // result will be:
|
||||
* // [
|
||||
* // { user: 'barney', age: 36 },
|
||||
* // { user: 'barney', age: 34 },
|
||||
* // { user: 'fred', age: 48 },
|
||||
* // { user: 'fred', age: 40 },
|
||||
* // ]
|
||||
*/
|
||||
declare function orderBy<T extends object>(arr: readonly T[], criteria: Array<((item: T) => unknown) | keyof T>, orders: Array<'asc' | 'desc'>): T[];
|
||||
//#endregion
|
||||
export { orderBy };
|
||||
Loading…
Add table
Add a link
Reference in a new issue