Doc comments are preserved too!
| 2 | |
| 3 | /** Doc comments are preserved too! */ |
| 4 | interface Book { |
| 5 | /** Name of the book. */ |
| 6 | name: string; |
| 7 | /** Chapters of the book. */ |
| 8 | chapters: Array<Chapter>; |
| 9 | /** |
| 10 | * Reviews of the book |
| 11 | * by users. |
| 12 | */ |
| 13 | user_reviews?: Array<string>; |
| 14 | } |
| 15 | |
| 16 | /** Book struct with camelCase field names. */ |
| 17 | interface BookCamel { |
nothing calls this directly
no outgoing calls
no test coverage detected