请使用当我无法使用的烤面包机模块时遇到此错误。
Angular CLI:7.3.7
节点:11.8.0
操作系统:Linux x64
角度:7.2.11
错误 node_modules / ng2-toastr / src / toast-container.component.d.ts(1,48): 错误TS2305:模块'“ ../../@angular/core/core”'没有导出 成员“ AnimationTransitionEvent”。
appModule.ts
import { ToastrModule } from "ngx-toastr";
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
BrowserAnimationsModule,
ToastrModule.forRoot({
positionClass: "toast-top-right",
timeOut: 1000
})
],
component.ts
import { ToastrService } from "ngx-toastr";
constructor(
private userservice: UsersService,
private toastr: ToastrService
) {}
this.toastr.success("User created successfully.");