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
|
// @target: es5
class One {
get prop1(): string { return ""; }
set prop1(s: string | number) { }
get prop2(): string { return ""; }
set prop2(s: string | number) { }
prop3: number;
get prop4(): string { return ""; }
set prop4(s: string | number) { }
}
class Two {
get prop1(): string { return ""; }
set prop1(s: string | number) { }
get prop2(): string { return ""; }
set prop2(s: string) { }
get prop3(): string { return ""; }
set prop3(s: string | boolean) { }
get prop4(): string { return ""; }
set prop4(s: string | boolean) { }
}
declare const u1: One|Two;
u1.prop1 = 42;
u1.prop1 = "hello";
u1.prop2 = 42;
u1.prop2 = "hello";
u1.prop3 = 42;
u1.prop3 = "hello";
u1.prop3 = true;
u1.prop4 = 42;
u1.prop4 = "hello";
u1.prop4 = true;
|