/** * 获取对象所有属性、值 * * @param {object} obj 对象/数组 * @return {Array} */ declare const entries: (obj: any) => any; export default entries;