/** * date日期格式化函数 * @function getYMDHMS * @param {Number} timestamp 时间戳 * @return {Object} {year,month,date,hours,minute,second} 年月日时分秒 */ declare const getYMDHMS: (timestamp: number) => object | null; export default getYMDHMS;