webcad-ue4-api/types/Geometry/Count.d.ts

14 lines
379 B
TypeScript
Raw Normal View History

2021-01-28 10:17:21 +08:00
/**
* ,使Map来保存元素的个数
*
* :
* let count = new Count();
* count.AddCount("Test", 1);
* count.GetCount("Test");//现在 Test 的个数为1
*/
export declare class Count {
private m_CountMap;
GetCount(obj: any): number;
AddCount(obj: any, add: number): void;
}
//# sourceMappingURL=Count.d.ts.map