(count: number)
| 2851 | } |
| 2852 | |
| 2853 | function signatureTransformCountKind(count: number): string { |
| 2854 | if (count <= 3) return String(count) |
| 2855 | if (count <= 7) return "4" |
| 2856 | if (count <= 15) return "8" |
| 2857 | return "16" |
| 2858 | } |
| 2859 | |
| 2860 | function signatureParameterKind( |
| 2861 | parameter: ts.Symbol | undefined, |
no test coverage detected