Skip to content

Commit

Permalink
change type
Browse files Browse the repository at this point in the history
  • Loading branch information
itxtoledo committed Aug 10, 2023
1 parent 5cae9e1 commit 516510b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Gustavo <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"type": "commonjs",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions test/utils/MyFetcher.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Axios, { AxiosError } from "axios";
import {
ICustomFetcher,
FetcherArgs,
FetcherRequisitionMethods,
ICustomFetcher,
} from "../../src/FetcherHandler";
import Axios, { AxiosError } from "axios";
} from "../../src/types";

export class MyFetcher implements ICustomFetcher {
private parseAxiosError(e: AxiosError) {
Expand Down

0 comments on commit 516510b

Please sign in to comment.