Book struct with camelCase field names.
| 15 | |
| 16 | /** Book struct with camelCase field names. */ |
| 17 | interface BookCamel { |
| 18 | /** Name of the book. */ |
| 19 | name: string; |
| 20 | /** Chapters of the book. */ |
| 21 | chapters: Array<Chapter>; |
| 22 | /** |
| 23 | * Reviews of the book |
| 24 | * by users. |
| 25 | */ |
| 26 | userReviews?: Array<string>; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Multiple line comments |
nothing calls this directly
no outgoing calls
no test coverage detected