6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
|
export declare class UniqueIdGenerator {
|
||
|
private uniqueIdSeq;
|
||
|
private readonly usedUniqueIds;
|
||
|
generate(base: string, ...texts: string[]): string;
|
||
|
}
|