-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostInfos.ts
More file actions
52 lines (51 loc) · 1.49 KB
/
Copy pathpostInfos.ts
File metadata and controls
52 lines (51 loc) · 1.49 KB
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
export interface IPostItem {
link: string;
title: string;
index?: number;
desc?: string;
}
export const PostArrary: IPostItem[] = [
{ title: 'Introduction', link: '/00-introduction', desc: '', index: 0 },
{
title: 'Types & values',
link: '/01-types-and-values',
desc: 'Similarities and differences between the language of types and the language of values.',
index: 1,
},
{
title: 'Types are just data',
link: '/02-types-are-just-data',
desc: "Let's take a look at the data structures at our disposal in Type-level TypeScript.",
index: 2,
},
{
title: 'Objects & Records',
link: '/03-objects-and-records',
desc: 'Learn how to use Object and Record types, two of the most useful data structures of Type-level TypeScript.',
index: 3,
},
{
title: 'Arrays & Tuples',
link: '/04-arrays-and-tuples',
desc: 'Learn how to create, use, and merge Array and Tuple types.',
index: 4,
},
{
title: 'Conditional Types',
link: '/05-conditional-types',
desc: "Let's create our first type-level algorithms using conditional types for code branching! Learn all about the extends and the infer keywords.",
index: 5,
},
{
title: 'Template Literal Types',
link: '/06-template-literal-types',
desc: 'Learn how to interpolate, parse, and generate unions of string literals.',
index: 6,
},
{
title: 'Type Challenges',
link: '/type-challenges',
desc: 'do some typescript challenges!',
index: 7,
},
];