forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckJsxChildrenCanBeTupleType.types
91 lines (75 loc) · 2.19 KB
/
checkJsxChildrenCanBeTupleType.types
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//// [tests/cases/conformance/jsx/checkJsxChildrenCanBeTupleType.tsx] ////
=== Performance Stats ===
Assignability cache: 2,500
Type Count: 10,000
Instantiation count: 50,000
Symbol count: 50,000
=== checkJsxChildrenCanBeTupleType.tsx ===
/// <reference path="react16.d.ts" />
import React from 'react'
>React : typeof React
> : ^^^^^^^^^^^^
interface ResizablePanelProps {
children: [React.ReactNode, React.ReactNode]
>children : [React.ReactNode, React.ReactNode]
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>React : any
> : ^^^
>React : any
> : ^^^
}
class ResizablePanel extends React.Component<
>ResizablePanel : ResizablePanel
> : ^^^^^^^^^^^^^^
>React.Component : React.Component<ResizablePanelProps, any, any>
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>React : typeof React
> : ^^^^^^^^^^^^
>Component : typeof React.Component
> : ^^^^^^^^^^^^^^^^^^^^^^
ResizablePanelProps, any> {}
const test = <ResizablePanel>
>test : JSX.Element
> : ^^^^^^^^^^^
><ResizablePanel> <div /> <div /></ResizablePanel> : JSX.Element
> : ^^^^^^^^^^^
>ResizablePanel : typeof ResizablePanel
> : ^^^^^^^^^^^^^^^^^^^^^
<div />
><div /> : JSX.Element
> : ^^^^^^^^^^^
>div : any
> : ^^^
<div />
><div /> : JSX.Element
> : ^^^^^^^^^^^
>div : any
> : ^^^
</ResizablePanel>
>ResizablePanel : typeof ResizablePanel
> : ^^^^^^^^^^^^^^^^^^^^^
const testErr = <ResizablePanel>
>testErr : JSX.Element
> : ^^^^^^^^^^^
><ResizablePanel> <div /> <div /> <div /></ResizablePanel> : JSX.Element
> : ^^^^^^^^^^^
>ResizablePanel : typeof ResizablePanel
> : ^^^^^^^^^^^^^^^^^^^^^
<div />
><div /> : JSX.Element
> : ^^^^^^^^^^^
>div : any
> : ^^^
<div />
><div /> : JSX.Element
> : ^^^^^^^^^^^
>div : any
> : ^^^
<div />
><div /> : JSX.Element
> : ^^^^^^^^^^^
>div : any
> : ^^^
</ResizablePanel>
>ResizablePanel : typeof ResizablePanel
> : ^^^^^^^^^^^^^^^^^^^^^