类型 'ObservableMedia' 中的 属性 'subscribe' 不可分配给基本类型 'Subscribable<MediaChange>' 中的相同 属性
Property 'subscribe' in type 'ObservableMedia' is not assignable to the same property in base type 'Subscribable<MediaChange>'
我刚刚对我的 Angular 6 申请做了 ng upgrade
,现在我得到:
ERROR in node_modules/@angular/flex-layout/core/typings/observable-media/observable-media.d.ts(11,14): error TS2416: Property 'subscribe' in type 'ObservableMedia' is not assignable to the same property in base type 'Subscribable<MediaChange>'.
Type '(next?: (value: MediaChange) => void, error?: (error: any) => void, complete?: () => void) => Sub...' is not assignable to type '{ (observer?: PartialObserver<MediaChange>): Unsubscribable; (next?: (value: MediaChange) => void...'.
Types of parameters 'next' and 'observer' are incompatible.
Type 'PartialObserver<MediaChange>' is not assignable to type '(value: MediaChange) => void'.
Type 'NextObserver<MediaChange>' is not assignable to type '(value: MediaChange) => void'.
Type 'NextObserver<MediaChange>' provides no match for the signature '(value: MediaChange): void'.
src/app/core/order-store.service.ts(152,7): error TS2345: Argument of type 'MonoTypeOperatorFunction<any[]>' is not assignable to parameter of type 'OperatorFunction<Order, any[]>'.
Types of parameters 'source' and 'source' are incompatible.
Type 'Observable<Order>' is not assignable to type 'Observable<any[]>'.
Type 'Order' is not assignable to type 'any[]'.
Property 'includes' is missing in type 'Order'.
RxJS 从 6.2 升级到 6.3(遗憾的是)更改了破坏 flex-layout
的订阅接口。幸运的是,flex-layout
发布了修复程序;更新到最新:
"@angular/flex-layout": "6.0.0-beta.18",
并安装它:
npm install @angular/flex-layout
我刚刚对我的 Angular 6 申请做了 ng upgrade
,现在我得到:
ERROR in node_modules/@angular/flex-layout/core/typings/observable-media/observable-media.d.ts(11,14): error TS2416: Property 'subscribe' in type 'ObservableMedia' is not assignable to the same property in base type 'Subscribable<MediaChange>'.
Type '(next?: (value: MediaChange) => void, error?: (error: any) => void, complete?: () => void) => Sub...' is not assignable to type '{ (observer?: PartialObserver<MediaChange>): Unsubscribable; (next?: (value: MediaChange) => void...'.
Types of parameters 'next' and 'observer' are incompatible.
Type 'PartialObserver<MediaChange>' is not assignable to type '(value: MediaChange) => void'.
Type 'NextObserver<MediaChange>' is not assignable to type '(value: MediaChange) => void'.
Type 'NextObserver<MediaChange>' provides no match for the signature '(value: MediaChange): void'.
src/app/core/order-store.service.ts(152,7): error TS2345: Argument of type 'MonoTypeOperatorFunction<any[]>' is not assignable to parameter of type 'OperatorFunction<Order, any[]>'.
Types of parameters 'source' and 'source' are incompatible.
Type 'Observable<Order>' is not assignable to type 'Observable<any[]>'.
Type 'Order' is not assignable to type 'any[]'.
Property 'includes' is missing in type 'Order'.
RxJS 从 6.2 升级到 6.3(遗憾的是)更改了破坏 flex-layout
的订阅接口。幸运的是,flex-layout
发布了修复程序;更新到最新:
"@angular/flex-layout": "6.0.0-beta.18",
并安装它:
npm install @angular/flex-layout