UNPKG

@devlander/utils

Version:

Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.

8 lines (7 loc) 360 B
/** * Returns an array of numbers starting from the specified start value and containing the specified count of elements. * @param start The starting value of the range. * @param count The number of elements in the range. * @returns An array of numbers representing the range. */ export declare const getRange: (start: number, count: number) => number[];