diff options
| author | Ritesh Ghosh <[email protected]> | 2023-11-22 13:48:50 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-11-22 13:48:50 +0530 |
| commit | 2cb44a6c7515d3fa4a7c753f4135b961145021d5 (patch) | |
| tree | 4aeb38ffd6fc707a620558ba97219e77c2e4320b /src/utils | |
| parent | 3a414555f2e05c82248b70633b9377b18dbd9e61 (diff) | |
| download | aniwatch-api-2cb44a6c7515d3fa4a7c753f4135b961145021d5.tar.xz aniwatch-api-2cb44a6c7515d3fa4a7c753f4135b961145021d5.zip | |
fix(ts): add strict file imports
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/index.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/utils/index.ts b/src/utils/index.ts index 7a1cf31..42492ef 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -6,8 +6,7 @@ import { SRC_SEARCH_URL, USER_AGENT_HEADER, ACCEPT_ENCODING_HEADER, -} from "./constants"; - +} from "./constants.js"; import { extractAnimes, substringAfter, @@ -15,7 +14,7 @@ import { retrieveServerId, extractTop10Animes, extractMostPopularAnimes, -} from "./methods"; +} from "./methods.js"; export { SRC_AJAX_URL, |
