/** * 抗冲突变量名产生器 * * 产生一个带有 name 的不重复的变量名。例如 key,key1,key2,... */ export declare class IDGenerator { private counts; next(name: string): string; private getCount; private increaseCount; }