-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump patch version
1.0.2
-> 1.0.3
- Loading branch information
Showing
26 changed files
with
418 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { AnimeParser, ISearch, IAnimeInfo, IAnimeResult, ISource } from '../../models'; | ||
declare class AnimePahe extends AnimeParser { | ||
readonly name = "AnimePahe"; | ||
protected baseUrl: string; | ||
protected logo: string; | ||
protected classPath: string; | ||
/** | ||
* @param query Search query | ||
*/ | ||
search: (query: string) => Promise<ISearch<IAnimeResult>>; | ||
/** | ||
* @param id Anime id | ||
* @param episodePage Episode page number (optional) default: -1 to get all episodes. number of episode pages can be found in the anime info object | ||
*/ | ||
fetchAnimeInfo: (id: string, episodePage?: number) => Promise<IAnimeInfo>; | ||
/** | ||
* | ||
* @param episodeId Episode id | ||
*/ | ||
fetchEpisodeSources: (episodeId: string) => Promise<ISource>; | ||
private fetchEpisodes; | ||
/** | ||
* @deprecated | ||
* @attention AnimePahe doesn't support this method | ||
*/ | ||
fetchEpisodeServers: (episodeLink: string) => Promise<unknown>; | ||
} | ||
export default AnimePahe; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.