feat: started popular titles on main page

This commit is contained in:
2024-07-20 00:59:00 +03:00
parent 2becf42487
commit 6b209077ef
10 changed files with 180 additions and 11 deletions

View File

@@ -15,4 +15,6 @@ export abstract class Parser {
abstract getChapters(url: string): Observable<object>;
abstract getChapter(url: string, chapter: string, volume: string): Observable<object>;
abstract getPopular(): Observable<object[]>;
}