Skip to content

Commit ba80c45

Browse files
committed
fix: move "interfaces vs types" back to the appropriate section"
1 parent 1706f7f commit ba80c45

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

notes/3-interface-type-basics.ts

+24
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,28 @@ import { HasPhoneNumber, HasEmail } from "./1-basics";
102102
// phoneDict.office; // definitely present
103103
// phoneDict.mobile; // MAYBE present
104104

105+
// == TYPE ALIASES vs INTERFACES == //
106+
107+
/**
108+
* (7) Type aliases are initialized synchronously, so self-referential stuff is 👎
109+
*/
110+
111+
// type NumberVal = 1 | 2 | 3 | NumberArr;
112+
// type NumberArr = NumberVal[];
113+
114+
/**
115+
* (8) Interfaces are initialized lazily, so combining it
116+
* - w/ a type alias allows for recursive types!
117+
*/
118+
119+
// type StringVal = "a" | "b" | "c" | StringArr;
120+
121+
// // type StringArr = StringVal[];
122+
// interface StringArr {
123+
// // arr[0]
124+
// [k: number]: "a" | "b" | "c" | StringVal[];
125+
// }
126+
127+
// const x: StringVal = Math.random() > 0.5 ? "b" : ["a"]; // ✅ ok!
128+
105129
export default {};

notes/4-class-basics.ts

-24
Original file line numberDiff line numberDiff line change
@@ -78,27 +78,3 @@ import { HasPhoneNumber, HasEmail } from "./1-basics";
7878
// console.log("sending an email");
7979
// }
8080
// }
81-
82-
// == TYPE ALIASES vs INTERFACES == //
83-
84-
/**
85-
* (7) Type aliases are initialized synchronously, so self-referential stuff is 👎
86-
*/
87-
88-
// type NumberVal = 1 | 2 | 3 | NumberArr;
89-
// type NumberArr = NumberVal[];
90-
91-
/**
92-
* (8) Interfaces are initialized lazily, so combining it
93-
* - w/ a type alias allows for recursive types!
94-
*/
95-
96-
// type StringVal = "a" | "b" | "c" | StringArr;
97-
98-
// // type StringArr = StringVal[];
99-
// interface StringArr {
100-
// // arr[0]
101-
// [k: number]: "a" | "b" | "c" | StringVal[];
102-
// }
103-
104-
// const x: StringVal = Math.random() > 0.5 ? "b" : ["a"]; // ✅ ok!

0 commit comments

Comments
 (0)