Manweill / swagger-axios-codegen

swagger client to use axios and typescript
MIT License
306 stars 83 forks source link

ignore unused import #132

Closed tran2 closed 3 years ago

tran2 commented 3 years ago

Looks like axiosStatic isn't being used, should it be removed? If it is I'll be happy to update this PR. My project tsconfig.json has this rule set to true: "noUnusedLocals": true so it throws error: axiosStatic is declared but its value is never read. The quick fix is to add // @ts-ignore right above the import line.