UNPKG

flowmolio

Version:

[![Tests](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml/badge.svg)](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml) [![Coverage](https://codecov.io/gh/vladvlasov256/flowmolio/branch/main/graph/badge.svg)](htt

12 lines (11 loc) 322 B
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; }