1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
//// [jsxIntrinsicElementsTypeArgumentErrors.tsx]
/// <reference path="/.lib/react16.d.ts" />
import * as React from "react";
// opening + closing
const a = <div<>></div>; // empty type args
const b = <div<number,>></div>; // trailing comma type args
const c = <div<Missing>></div>; // nonexistant type args
const d = <div<Missing<AlsoMissing>>></div>; // nested missing type args
const e = <div<Record<object, object>>></div>; // existing but incorrect nested type args
const f = <div<number>></div>; // existing type argument with no internal issues
// self-closing
const g = <div<>/>; // empty type args
const h = <div<number,>/>; // trailing comma type args
const i = <div<Missing>/>; // nonexistant type args
const j = <div<Missing<AlsoMissing>>/>; // nested missing type args
const k = <div<Record<object, object>>/>; // existing but incorrect nested type args
const l = <div<number>/>; // existing type argument with no internal issues
//// [jsxIntrinsicElementsTypeArgumentErrors.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/// <reference path="react16.d.ts" />
var React = require("react");
// opening + closing
var a = React.createElement("div", null); // empty type args
var b = React.createElement("div", null); // trailing comma type args
var c = React.createElement("div", null); // nonexistant type args
var d = React.createElement("div", null); // nested missing type args
var e = React.createElement("div", null); // existing but incorrect nested type args
var f = React.createElement("div", null); // existing type argument with no internal issues
// self-closing
var g = React.createElement("div", null); // empty type args
var h = React.createElement("div", null); // trailing comma type args
var i = React.createElement("div", null); // nonexistant type args
var j = React.createElement("div", null); // nested missing type args
var k = React.createElement("div", null); // existing but incorrect nested type args
var l = React.createElement("div", null); // existing type argument with no internal issues
|