ez-web-toolkit
Version:
EZ Web Toolkit
16 lines (15 loc) • 370 B
TypeScript
/**
* @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[];
}