/** * Arrays * * This will contain methods for working with arrays. * * @module * @name Arrays */ export class Arrays { /** * This will convert an object or collection into an array. * * @param {object} list * @returns {Array} */ static toArray(list: object): Array; /** * This will check if a value is found in an array. * * @param {Array} array * @param {string} element * @param {number} [fromIndex] * @returns {number} This will return -1 if not found. */ static inArray(array: Array, element: string, fromIndex?: number): number; }