├── .gitignore ├── .tool-versions ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── parsers.spec.ts ├── parsers.ts ├── type-formdata.spec.ts └── typed-formdata.ts ├── tsconfig.json ├── tsconfig.lib.json ├── tsconfig.test.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | tsconfig.lib.tsbuildinfo 4 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 22.6.0 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parsers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/src/parsers.spec.ts -------------------------------------------------------------------------------- /src/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/src/parsers.ts -------------------------------------------------------------------------------- /src/type-formdata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/src/type-formdata.spec.ts -------------------------------------------------------------------------------- /src/typed-formdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/src/typed-formdata.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/tsconfig.lib.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1eu/typed-formdata/HEAD/vite.config.ts --------------------------------------------------------------------------------