(reflection: any)
| 67 | }; |
| 68 | |
| 69 | const getReflectionMarkdown = (reflection: any): string[] => |
| 70 | [ |
| 71 | ...getCommentTexts(reflection.comment), |
| 72 | ...getCommentTexts(reflection?.signatures?.[0]?.comment), |
| 73 | ...getCommentTexts(reflection?.reflectionComment?.signatures?.[0]?.comment), |
| 74 | ...getCommentTexts(reflection?.type?.declaration?.signatures?.[0]?.comment), |
| 75 | ...getCommentTexts(reflection?.type?.declaration?.comment), |
| 76 | ].filter((markdown): markdown is string => markdown != null); |
| 77 | |
| 78 | export const extractThumbnailMarkdown: NodeTransform = (node) => { |
| 79 | if (node.reflection != null) { |
no test coverage detected
searching dependent graphs…