(member: ts.TypeElement | ts.ClassElement)
| 2961 | } |
| 2962 | const declaration = parseableSignature( |
| 2963 | cwd, |
| 2964 | callSignatures.map((text) => `declare function ${name}${text}`).join("\n") |
| 2965 | ) |
| 2966 | if (declaration !== null) return declaration |
| 2967 | const callSignatureAlias = parseableSignature( |
| 2968 | cwd, |
| 2969 | signatureAlias( |
| 2970 | name, |
| 2971 | `{ |
| 2972 | ${callSignatures.map((text) => ` ${text};`).join("\n")} |
| 2973 | }` |
| 2974 | ) |
| 2975 | ) |
| 2976 | if (callSignatureAlias !== null) return callSignatureAlias |
no test coverage detected
searching dependent graphs…