/**
 * 将对象或者伪数组转为新数组
 *
 * @param {Array} list 数组
 * @return {Array}
 */
declare function toArray(list: any): any;
export default toArray;
