对于Observable<T>
类型的变量,我尝试分配Observable<S>
,其中S
是T
的一部分,并惊讶于没有分配错误在编译期间。
愿意挑选你的大脑来了解这种行为的原因。
// RxJS 5.3.0
// TS 2.2.2
interface Super {
a: number;
b: number;
}
interface Subset {
a: number;
}
type Maybe<T> = T | undefined;
// Both of the following produce errors
const super1: Super = {a: 1} as Subset;
const superMaybe: Maybe<Super> = { a: 1 } as Maybe<Subset>;
// But this doesn't error
const superObservable: Rx.Observable<Super> = Rx.Observable.of<Subset>({a: 1});
答案 0 :(得分:0)
这实际上与RxJS无关。这是一个TypeScript问题,已在未来2.4
版本中修复。这就是安装typescript@next
时的原因。