(node: ts.Node)
| 99 | } |
| 100 | |
| 101 | function getIdentifierString(node: ts.Node): string { |
| 102 | return node.getText(); |
| 103 | } |
| 104 | |
| 105 | function parseFunctionType(node: ts.SignatureDeclarationBase, references: AST.TypeReferences): AST.FunctionType { |
| 106 | const parameters: AST.PropertyLikeDeclaration[] = []; |
no test coverage detected