(url: string, ep: number)
| 596 | } |
| 597 | |
| 598 | public setResumeWatching(url: string, ep: number) { |
| 599 | return utils.setResumeWaching(url, ep, this.type, this.getCacheKey()); |
| 600 | } |
| 601 | |
| 602 | public getResumeWatching(): { url: string; ep: number } | null { |
| 603 | if (this.options && this.options.r) return this.options.r; |
nothing calls this directly
no test coverage detected