Skip to content

Commit 8f6cdf3

Browse files
committed
Added 001
1 parent e8da069 commit 8f6cdf3

10 files changed

+28
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
interface UserProfile {
2+
id: string;
3+
4+
preferences: {
5+
theme: "light" | "dark";
6+
};
7+
}
8+
9+
let user: UserProfile = {
10+
id: "123",
11+
preferences: {
12+
theme: "blue",
13+
},
14+
};
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
interface UserProfile {
2+
id: string;
3+
4+
preferences: {
5+
theme: "light" | "dark";
6+
};
7+
}
8+
9+
let user: UserProfile = {
10+
id: "123",
11+
preferences: {
12+
theme: "light",
13+
},
14+
};

0 commit comments

Comments
 (0)