Moving to strict.

Create form has now moved to constructor and route data subscribe is type safe.
This commit is contained in:
2020-11-23 09:18:02 +05:30
parent 30b1a3ef7d
commit 39e3cc51bb
52 changed files with 348 additions and 448 deletions
@@ -28,10 +28,6 @@ export class UserDetailComponent implements OnInit, AfterViewInit {
private ser: UserService,
) {
this.hide = true;
this.createForm();
}
createForm() {
this.form = this.fb.group({
name: '',
password: '',
@@ -41,7 +37,9 @@ export class UserDetailComponent implements OnInit, AfterViewInit {
}
ngOnInit() {
this.route.data.subscribe((data: { item: User }) => {
this.route.data.subscribe((value) => {
const data = value as { item: User };
this.showItem(data.item);
});
}