UNPKG

ez-web-toolkit

Version:
16 lines (15 loc) 370 B
/** * @namespace toolkit.utils */ /** * @class toolkit.utils.ArrayHelper * @classdesc Methods for helping deal with arrays. */ export declare class ArrayHelper { /** * Create an array of the given length. The array will start at 1 instead of 0 * * @param {number} length */ static createArray(length: number): number[]; }