UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

8 lines (7 loc) 252 B
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; }