UNPKG

xhy-xe-utils

Version:
19 lines (16 loc) 408 B
import { XEUtilsMethods } from '../xe-utils' /** * 将多个数的值返回唯一的并集数组 * @param array 数组 */ export declare function union(...array: any[]): any[]; declare module '../xe-utils' { interface XEUtilsMethods { /** * 将多个数的值返回唯一的并集数组 * @param array 数组 */ union: typeof union; } } export default union