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
const Person: PersonType = {
name: "Daniel Johnson",
title: "Software Engineer"
};
let Languages: LanguageType = {
TypeScript: "Experienced",
Python: "Intermediate",
Swift: "Beginner"
};
let Tools: ToolsType = {
Frameworks: ["React", "Next.js", "Express"],
StateManagement: ["Jotai", "Zhustand", "Redux"],
Databases: ["SQL", "KV", "Vectors"],
Other: CanLearnInADay(AllTools),
};
let Hobbies: HobbyType = {
Build: ["Writing", "Filmmaking", "Woodworking"],
Eat: ["Tacos", "Eggs & Bacon", "Grapefruit"],
Watch: ["Shameless", "Monk", "Mad Men", "The Office"],
Listen: ["Gipsy Kings", "Drakeo The Ruler", "Johnny Cash", "Future"],
};