├── .github ├── renovate.json └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── index.test.ts ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── vitest.config.ts /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/index.test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/axios-throttle-interceptor/HEAD/vitest.config.ts --------------------------------------------------------------------------------