(typeParameters, parameters, type)
| 23555 | } |
| 23556 | // @api |
| 23557 | function createFunctionTypeNode(typeParameters, parameters, type) { |
| 23558 | var node = createBaseSignatureDeclaration(179 /* SyntaxKind.FunctionType */, |
| 23559 | /*decorators*/ undefined, |
| 23560 | /*modifiers*/ undefined, |
| 23561 | /*name*/ undefined, typeParameters, parameters, type); |
| 23562 | node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; |
| 23563 | return node; |
| 23564 | } |
| 23565 | // @api |
| 23566 | function updateFunctionTypeNode(node, typeParameters, parameters, type) { |
| 23567 | return node.typeParameters !== typeParameters |
no test coverage detected
searching dependent graphs…