@loadsmart/miranda-wc
Version:
Miranda Web Components component library
10 lines (9 loc) • 332 B
TypeScript
/**
* Create an array containing a range of numbers between
* and including the specified `start` and `stop` values,
* with a fixed step interval of 1.
* @param start the start value of the range
* @param stop the stop value of the range
*/
declare function range(start: number, stop: number): number[];
export default range;