Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
riimuru committed Oct 23, 2023
1 parent d71bdca commit ae4adf8
Show file tree
Hide file tree
Showing 10 changed files with 82 additions and 149 deletions.
2 changes: 1 addition & 1 deletion dist/models/proxy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/models/proxy.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/providers/anime/anify.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { AnimeParser, ISearch, IAnimeInfo, IAnimeResult, ISource, IEpisodeServer } from '../../models';
type ProviderId = '9anime' | 'animepahe' | 'zoro' | 'gogoanime';
declare class Anify extends AnimeParser {
readonly name = "anify";
readonly name = "Anify";
protected baseUrl: string;
protected classPath: string;
private readonly actions;
/**
* @param query Search query
* @param page Page number (optional)
Expand All @@ -15,16 +17,14 @@ declare class Anify extends AnimeParser {
search: (query: string, page?: number) => Promise<ISearch<IAnimeResult>>;
/**
* @param id Anime id
* @param providerId Provider id (optional) default: gogoanime
*/
fetchAnimeInfo: (id: string, providerId?: '9anime' | 'animepahe' | 'zoro' | 'gogoanime') => Promise<IAnimeInfo>;
fetchAnimeInfoByIdRaw: (id: string) => Promise<any>;
/**
* @param id anilist id
* @param providerId Provider id (optional) default: gogoanime
*/
fetchAnimeInfoByAnilistId: (id: string, providerId?: '9anime' | 'animepahe' | 'zoro' | 'gogoanime') => Promise<IAnimeInfo>;
fetchEpisodeSources: (episodeId: string, episodeNumber: number, id: string) => Promise<ISource>;
fetchEpisodeSources: (episodeId: string, episodeNumber: number, id: number, providerId?: ProviderId) => Promise<ISource>;
/**
* @deprecated
*/
Expand Down
68 changes: 18 additions & 50 deletions dist/providers/anime/anify.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ae4adf8

Please sign in to comment.