This commit is contained in:
ChenX
2024-09-25 17:40:49 +08:00
parent 20c3f892e7
commit 00b2b3fb90
678 changed files with 0 additions and 11826 deletions

View File

@@ -1,14 +0,0 @@
/**
* 一个简单的计数器实现,本质是使用一个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