├── .github └── workflows │ └── check.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.jsonc ├── bun.lockb ├── lib └── index.ts ├── package.json ├── tsconfig.json └── tsup.config.ts /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/README.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/biome.jsonc -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/bun.lockb -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/lib/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naruto-Leader/typed-route-handler/HEAD/tsup.config.ts --------------------------------------------------------------------------------