-
Notifications
You must be signed in to change notification settings - Fork 0
/
7.ts
38 lines (35 loc) · 1.04 KB
/
7.ts
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
import { Expect, Equal } from "type-testing";
type DoAppend<T extends string> = `good_${T}`;
type AppendGood<L extends { [key: string]: any }> = {
[key in keyof L as DoAppend<string & key>]: L[key];
};
type WellBehavedList = {
tom: { address: "1 candy cane lane" };
timmy: { address: "43 chocolate dr" };
trash: { address: "637 starlight way" };
candace: { address: "12 aurora" };
};
type test_wellBehaved_actual = AppendGood<WellBehavedList>;
// ^?
type test_wellBehaved_expected = {
good_tom: { address: "1 candy cane lane" };
good_timmy: { address: "43 chocolate dr" };
good_trash: { address: "637 starlight way" };
good_candace: { address: "12 aurora" };
};
type test_wellBehaved = Expect<
Equal<test_wellBehaved_expected, test_wellBehaved_actual>
>;
type Unrelated = {
dont: "cheat";
play: "fair";
};
type test_Unrelated_actual = AppendGood<Unrelated>;
// ^?
type test_Unrelated_expected = {
good_dont: "cheat";
good_play: "fair";
};
type test_Unrelated = Expect<
Equal<test_Unrelated_expected, test_Unrelated_actual>
>;