Troubleshooting error while compiling

I have an application that suddenly does not compile. The only indication that I get is:

ng-cli:
ERROR in src/app/power-bills/power-bills-generated.component.ts(318,7): error TS2554: Expected 1 arguments, but got 0.
ng-cli: i 「wdm」: Failed to compile.

How can I troubleshoot exactly what the component is that is causing the problem? This is a very busy page with lots of components.

This error means that a function is expecting an argument. You can check the generated code and see what's on line 318.

Where is the generated code located?

You can check here to see how a Radzen application is structured: Architecture (Angular)

Also right-clicking the page in Radzen allows you to go to the generated files.

Perfect, that was the missing piece....thank you.