├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json └── service ├── axios_demo.ts ├── core ├── index.d.ts ├── index.ts ├── type.d.ts └── type.ts └── demo.ts /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/package.json -------------------------------------------------------------------------------- /service/axios_demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/axios_demo.ts -------------------------------------------------------------------------------- /service/core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/core/index.d.ts -------------------------------------------------------------------------------- /service/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/core/index.ts -------------------------------------------------------------------------------- /service/core/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/core/type.d.ts -------------------------------------------------------------------------------- /service/core/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/core/type.ts -------------------------------------------------------------------------------- /service/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandsomeLeft/axios-ninja/HEAD/service/demo.ts --------------------------------------------------------------------------------