// The esbuild bundle entry: re-exports the SHARED game-image renderer from ui/src/lib — // the exact module the browser build unit-tests — plus the alphabet cache seeder the // server fills from the backend-supplied per-variant table. Bundled by `pnpm run bundle` // into dist/gameimage.mjs (type erasure only; the ui project type-checks the source). export { drawGameImage, type RenderOptions } from '../../ui/src/lib/gameimage'; export { setAlphabet } from '../../ui/src/lib/alphabet';