-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (116 loc) · 3.63 KB
/
index.html
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Interactive TypeScript tool: learn how to convert types effectively with hands-on examples, TypeScript Playground, and references to widely used libraries"
/>
<link rel="manifest" href="manifest.json" />
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="196x196"
type="image/png"
/>
<link
href="/android-icon-192x192.png"
rel="icon"
sizes="192x192"
type="image/png"
/>
<link
href="/apple-touch-icon-180x180.png"
rel="apple-touch-icon"
sizes="180x180"
type="image/png"
/>
<link
href="/apple-touch-icon-167x167.png"
rel="apple-touch-icon"
sizes="167x167"
type="image/png"
/>
<link
href="/apple-touch-icon-152x152.png"
rel="apple-touch-icon"
sizes="152x152"
type="image/png"
/>
<link rel="apple-touch-icon" href="/apple-touch-icon-120x120.png" />
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="144x144"
type="image/png"
/>
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="96x96"
type="image/png"
/>
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="72x72"
type="image/png"
/>
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="48x48"
type="image/png"
/>
<link
href="/safari-macos-icon-196x196.png"
rel="icon"
sizes="36x36"
type="image/png"
/>
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
<link href="/favicon-16x16.ico" rel="icon" />
<meta name="image" content="/image.png" />
<meta name="keywords" content="TypeScript Conversion TS" />
<link rel="canonical" href="https://ts-conversion.beraliv.com/" />
<meta property="og:site_name" content="ts-conversion.beraliv.com" />
<meta
property="og:title"
content="Convert one type to another in TypeScript"
/>
<meta
property="og:description"
content="Interactive TypeScript tool: learn how to convert types effectively with hands-on examples, TypeScript Playground, and references to widely used libraries"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ts-conversion.beraliv.com/" />
<meta property="og:image" content="/image.png" />
<meta property="og:image:height" content="900" />
<meta property="og:image:width" content="1600" />
<meta name="twitter:creator" content="@beraliv" />
<meta name="twitter:site" content="@beraliv" />
<meta
name="twitter:title"
content="Convert one type to another in TypeScript"
/>
<meta
name="twitter:description"
content="Interactive TypeScript tool: learn how to convert types effectively with hands-on examples, TypeScript Playground, and references to widely used libraries"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:image" content="/image.png" />
<link rel="preconnect" href="https://plausible.io" />
<title>TS Conversion</title>
<script
defer
data-domain="ts-conversion.beraliv.com"
src="https://plausible.io/js/script.outbound-links.js"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>