fix(ts): add strict file imports
This commit is contained in:
@@ -1,20 +1,23 @@
|
|||||||
import {
|
import type {
|
||||||
|
GenreAnimePathParams,
|
||||||
|
GenreAnimeQueryParams,
|
||||||
|
} from "./animeGenre.js";
|
||||||
|
import type {
|
||||||
CategoryAnimePathParams,
|
CategoryAnimePathParams,
|
||||||
CategoryAnimeQueryParams,
|
CategoryAnimeQueryParams,
|
||||||
} from "./animeCategory";
|
} from "./animeCategory.js";
|
||||||
import {
|
import type {
|
||||||
AnimeProducerPathParams,
|
AnimeProducerPathParams,
|
||||||
AnimeProducerQueryParams,
|
AnimeProducerQueryParams,
|
||||||
} from "./animeProducer";
|
} from "./animeProducer.js";
|
||||||
import { AnimeSearchQueryParams } from "./animeSearch";
|
import type { AnimeSearchQueryParams } from "./animeSearch.js";
|
||||||
import { AnimeEpisodePathParams } from "./animeEpisodes";
|
import type { AnimeEpisodePathParams } from "./animeEpisodes.js";
|
||||||
import { EpisodeServersQueryParams } from "./episodeServers";
|
import type { EpisodeServersQueryParams } from "./episodeServers.js";
|
||||||
import { AnimeAboutInfoQueryParams } from "./animeAboutInfo";
|
import type { AnimeAboutInfoQueryParams } from "./animeAboutInfo.js";
|
||||||
import { AnimeEpisodeSrcsQueryParams } from "./animeEpisodeSrcs";
|
import type { AnimeEpisodeSrcsQueryParams } from "./animeEpisodeSrcs.js";
|
||||||
import { AnimeSearchSuggestQueryParams } from "./animeSearchSuggestion";
|
import type { AnimeSearchSuggestQueryParams } from "./animeSearchSuggestion.js";
|
||||||
import { GenreAnimePathParams, GenreAnimeQueryParams } from "./animeGenre";
|
|
||||||
|
|
||||||
export {
|
export type {
|
||||||
GenreAnimePathParams,
|
GenreAnimePathParams,
|
||||||
GenreAnimeQueryParams,
|
GenreAnimeQueryParams,
|
||||||
AnimeSearchQueryParams,
|
AnimeSearchQueryParams,
|
||||||
|
|||||||
Reference in New Issue
Block a user