| 8 | } |
| 9 | |
| 10 | interface BookInfo { |
| 11 | bookId: string; |
| 12 | title: string; |
| 13 | author?: string; |
| 14 | cover?: string; |
| 15 | intro?: string; |
| 16 | category?: string; |
| 17 | publisher?: string; |
| 18 | publishTime?: string; |
| 19 | isbn?: string; |
| 20 | wordCount?: number; |
| 21 | newRating?: number; |
| 22 | newRatingCount?: number; |
| 23 | } |
| 24 | |
| 25 | interface Chapter { |
| 26 | chapterUid: number; |
nothing calls this directly
no outgoing calls
no test coverage detected