reports/frontend/node_modules/es-toolkit/dist/compat/array/drop.d.mts
jtricerolph 1c411e402e Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-20 14:37:36 +00:00

20 lines
No EOL
837 B
TypeScript

//#region src/compat/array/drop.d.ts
/**
* Removes a specified number of elements from the beginning of an array and returns the rest.
*
* This function takes an array and a number, and returns a new array with the specified number
* of elements removed from the start.
*
* @template T - The type of elements in the array.
* @param array - The array from which to drop elements.
* @param itemsCount - The number of elements to drop from the beginning of the array.
* @returns A new array with the specified number of elements removed from the start.
*
* @example
* const array = [1, 2, 3, 4, 5];
* const result = drop(array, 2);
* result will be [3, 4, 5] since the first two elements are dropped.
*/
declare function drop<T>(array: ArrayLike<T> | null | undefined, itemsCount?: number): T[];
//#endregion
export { drop };