Login
Remember
Register
Ask a Question
What classes should not be added to declarations?
0
votes
asked
Sep 22, 2023
in
Angular
by
AdilsonLima
What classes should not be added to declarations?
angularjs-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 22, 2023
by
AdilsonLima
The below class types shouldn't be added to declarations
A class which is already declared in any another module.
Directives imported from another module.
Module classes.
Service classes.
Non-Angular classes and objects, such as strings, numbers, functions, entity models, configurations, business logic, and helper classes.
...