├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Makefile ├── README.md ├── api-extractor.json ├── etc └── typed-url-params.api.md ├── index.ts ├── package.json ├── test.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | temp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/README.md -------------------------------------------------------------------------------- /api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/api-extractor.json -------------------------------------------------------------------------------- /etc/typed-url-params.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/etc/typed-url-params.api.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduz/typed-url-params/HEAD/tsconfig.json --------------------------------------------------------------------------------