(url: string, ep: number)
| 605 | } |
| 606 | |
| 607 | public setContinueWatching(url: string, ep: number) { |
| 608 | return utils.setContinueWaching(url, ep, this.type, this.getCacheKey()); |
| 609 | } |
| 610 | |
| 611 | public getContinueWatching(): { url: string; ep: number } | null { |
| 612 | if (this.options && this.options.c) return this.options.c; |
nothing calls this directly
no test coverage detected