(node: any, checker, parentIds, type)
| 49 | } |
| 50 | |
| 51 | function getFunctionReturns(node: any, checker, parentIds, type) { |
| 52 | if (!node) return {}; |
| 53 | const propType = getDocgenTypeHelper( |
| 54 | checker, |
| 55 | node.type, |
| 56 | false, |
| 57 | getNextParentIds(parentIds, type), |
| 58 | ); |
| 59 | return { |
| 60 | propType, |
| 61 | }; |
| 62 | } |
| 63 | |
| 64 | const blacklistNames = [ |
| 65 | 'prototype', |
no test coverage detected
searching dependent graphs…