/// declare module Configs { function removeElementByValue(array: Array, value: any, key?: string): void; function removeElementsByValue(array: Array, elements: Array): void; /** 对象的深拷贝 */ function deepCopy(object: any): any; }