You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,7 @@
130
130
|122|[How do you invoke a builder?](#how-do-you-invoke-a-builder)|
131
131
|123|[How do you create app shell in Angular?](#how-do-you-create-app-shell-in-angular)|
132
132
|124|[What are the case types in Angular?](#what-are-the-case-types-in-angular)|
133
+
|125|[What are the class decorators in Angular?](#what-are-the-class-decorators-in-angular)|
133
134
134
135
1.### What is Angular Framework?
135
136
@@ -1633,4 +1634,11 @@
1633
1634
3. **dash-case (or "kebab-case"):** The descriptive part of file names, component selectors uses dashes between the words. For example, "app-user-list".
1634
1635
4. **UPPER_UNDERSCORE_CASE:** All constants uses capital letters connected with underscores. For example, "NUMBER_OF_USERS".
1635
1636
1636
-
1637
+
125. ### What are the class decorators in Angular?
1638
+
A class decorator is a decorator that appears immediately before a class definition, which declares the class to be of the given type, and provides metadata suitable to the type
1639
+
The following list of decorators comes under class decorators,
0 commit comments