You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/d.ts/configs/ts/configsUtils.d.ts

10 lines
324 B

/// <reference path="../../includes.d.ts" />
declare module Configs {
function removeElementByValue(array: Array<any>, value: any, key?: string): void;
function removeElementsByValue(array: Array<any>, elements: Array<any>): void;
/**
对象的深拷贝
*/
function deepCopy(object: any): any;
}