/** * returns an array filled with numbers in an ascending order to the provided max value * @example * range(5) * // returns [0, 1, 2, 3, 4, 5] */ export default function range(max: number): number[]; //# sourceMappingURL=range.d.ts.map