noname/node_modules/noname-typings/MapEx.d.ts

27 lines
681 B
TypeScript
Raw Normal View History

declare interface Map<K, V> {
/**
* @deprecated array改为map而创建的方法使has
*/
contains(item: K): boolean;
/**
* @deprecated array改为map而创建的方法使has
*/
inculdes(item: K): boolean;
/**
* @deprecated array改为map而创建的方法使set
*/
add(item: K): this;
/**
* @deprecated array改为map而创建的方法使set
*/
push(item: K): this;
/**
* @deprecated array改为map而创建的方法
*/
addArray(arr: Array<K>): this;
/**
* @deprecated array改为map而创建的方法使delete
*/
remove(item: K): this;
}