/** * [抽样] 随机获取数组中的一个值 * @param {Array} array 抽样数组 */ declare const sample: (array: any[]) => T; export default sample;