8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
|
export default class IdentifierGenerator {
|
||
|
private _chars;
|
||
|
private _nextIds;
|
||
|
next(): string;
|
||
|
_increment(): void;
|
||
|
[Symbol.iterator](): Generator<string, void, unknown>;
|
||
|
}
|