├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── code-scanning-2022-06-29.yml │ ├── pr-build.yaml │ └── release.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── axios-types.d.ts ├── index.ts └── typeUtils.ts ├── test ├── index.test.ts └── typeUtils.test.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/code-scanning-2022-06-29.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.github/workflows/code-scanning-2022-06-29.yml -------------------------------------------------------------------------------- /.github/workflows/pr-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.github/workflows/pr-build.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/package.json -------------------------------------------------------------------------------- /src/axios-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/src/axios-types.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/src/typeUtils.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/typeUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/test/typeUtils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/axios-fetch/HEAD/yarn.lock --------------------------------------------------------------------------------