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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
//// [unionTypeErrorMessageTypeRefs01.ts]
interface Foo { foo: any }
interface Bar { bar: any }
interface Baz { baz: any }
interface Kwah { kwah: any }
////////
interface A<T> {
aProp: T;
}
interface B<T> {
bProp: T;
}
interface C<T> {
cProp: T;
}
declare const a: A<Foo>;
declare const b: B<Foo>;
declare const c: C<Foo>;
declare let thingOfInterfaces: A<Bar> | B<Baz> | C<Kwah>;
thingOfInterfaces = a;
thingOfInterfaces = b;
thingOfInterfaces = c;
////////
type X<T> = {
xProp: T;
}
type Y<T> = {
yProp: T;
}
type Z<T> = {
zProp: T;
}
declare const x: X<Foo>;
declare const y: Y<Foo>;
declare const z: Z<Foo>;
declare let thingOfTypeAliases: X<Bar> | Y<Baz> | Z<Kwah>;
thingOfTypeAliases = x;
thingOfTypeAliases = y;
thingOfTypeAliases = z;
//// [unionTypeErrorMessageTypeRefs01.js]
thingOfInterfaces = a;
thingOfInterfaces = b;
thingOfInterfaces = c;
thingOfTypeAliases = x;
thingOfTypeAliases = y;
thingOfTypeAliases = z;
|