(
parts: {text: string}[] | undefined,
)
| 50 | }; |
| 51 | |
| 52 | const getCommentText = ( |
| 53 | parts: {text: string}[] | undefined, |
| 54 | ): string | undefined => parts?.map(({text}) => text).join(''); |
| 55 | |
| 56 | const getCommentTexts = ( |
| 57 | comment: {summary?: {text: string}[]} | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…