flowmolio
Version:
[](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml) [](htt
12 lines (11 loc) • 322 B
TypeScript
export declare class IdGenerator {
private existingIds;
private hierarchyCounters;
private currentDepth;
constructor(existingIds?: Set<string>);
static fromSVGString(svgString: string): IdGenerator;
reset(): void;
enterLevel(): void;
exitLevel(): void;
next(tagName: string): string;
}