/** * 追加数据 * @param arr 数组 * @param items 任意值 * @example add(arr,items); */ export default function add(arr: T[], ...items: T[]): T[];