(typeParameters, parameters, type)
| 23467 | } |
| 23468 | // @api |
| 23469 | function createConstructSignature(typeParameters, parameters, type) { |
| 23470 | var node = createBaseSignatureDeclaration(175 /* SyntaxKind.ConstructSignature */, |
| 23471 | /*decorators*/ undefined, |
| 23472 | /*modifiers*/ undefined, |
| 23473 | /*name*/ undefined, typeParameters, parameters, type); |
| 23474 | node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; |
| 23475 | return node; |
| 23476 | } |
| 23477 | // @api |
| 23478 | function updateConstructSignature(node, typeParameters, parameters, type) { |
| 23479 | return node.typeParameters !== typeParameters |
no test coverage detected
searching dependent graphs…