1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-03 06:12:53 +02:00

docs(angular): add typed forms content (#6949)

This commit is contained in:
J. Degand
2024-09-03 04:12:46 -04:00
committed by GitHub
parent 1057b89fa0
commit 9d3868494b

View File

@@ -1 +1,11 @@
# Typed Forms
# Typed Forms
Since Angular 14, reactive forms are strictly typed by default. You don't have to define extra custom types or add a ton of type annotations to your form declarations to benefit from this extra type safety, as Angular will infer types from the default value of a form control. Non-typed forms are still supported. To use them, you must import the `Untyped` symbols from `@angular/forms`.
Visit the following resources to learn more:
- [@official@Angular Official Docs - @let](https://angular.dev/api/core/@let)
- [@article@Angular Strictly Typed Forms (Complete Guide)](https://blog.angular-university.io/angular-typed-forms/)
- [@video@Getting started with typed reactive forms in Angular](https://www.youtube.com/watch?v=mT3UR0TdDnU)
- [@video@Angular TYPED Forms: Are You Using Them Correctly?](https://www.youtube.com/watch?v=it2BZoIvBPc)
- [@video@Knowing this makes Angular typed forms WAY less awkward](https://www.youtube.com/watch?v=xpRlijg6spo)