更新版本

This commit is contained in:
2025-04-27 15:20:33 +08:00
parent a29566e9b4
commit aa61cca146
79 changed files with 6180 additions and 4264 deletions

View File

@@ -7,7 +7,7 @@
* count.GetCount("Test");//现在 Test 的个数为1
*/
export declare class Count {
private m_CountMap;
_CountMap: Map<any, number>;
GetCount(obj: any): number;
AddCount(obj: any, add: number): void;
}