Files
infocom-systems-design/node_modules/mermaid/dist/rendering-util/uid.d.ts
2025-10-03 22:27:28 +03:00

9 lines
178 B
TypeScript

export declare class Uid {
private static count;
id: string;
href: string;
static next(name: string): Uid;
constructor(id: string);
toString(): string;
}