/** * Help you to get a array from any type of variable * if the variable is an array already it will return the same array * @param {Array | any} variable variable that you want to cast to array * @returns {Array} Array with the variable inside or the variable if the variable is an array already */ declare const toArray: (variable: Array | any) => Array; export { toArray };