persona-community-5/.pnpm-store/v3/files/0a/5759d6792887d2e1a208f369bf1c84d1753cf9b6283c5095642a04b0a99704564940c2aae29d4c5245fde030fdd844d8a437ae05dbad93e6905a7bea88db85
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

8 lines
252 B
Plaintext

import type { Token } from "./parser/tokenizer";
export default class NameManager {
private readonly usedNames;
constructor(code: string, tokens: Array<Token>);
claimFreeName(name: string): string;
findFreeName(name: string): string;
}