(node, checkMode)
| 73776 | return tagName.kind === 79 /* SyntaxKind.Identifier */ && ts.isIntrinsicJsxName(tagName.escapedText); |
| 73777 | } |
| 73778 | function checkJsxAttribute(node, checkMode) { |
| 73779 | return node.initializer |
| 73780 | ? checkExpressionForMutableLocation(node.initializer, checkMode) |
| 73781 | : trueType; // <Elem attr /> is sugar for <Elem attr={true} /> |
| 73782 | } |
| 73783 | /** |
| 73784 | * Get attributes type of the JSX opening-like element. The result is from resolving "attributes" property of the opening-like element. |
| 73785 | * |
no test coverage detected
searching dependent graphs…