diff --git a/aio/content/errors/NG3003.md b/aio/content/errors/NG3003.md index 6016d823d6..f65d58a4f5 100644 --- a/aio/content/errors/NG3003.md +++ b/aio/content/errors/NG3003.md @@ -53,3 +53,5 @@ component being compiled. Here are some ideas for fixing the problem: that is stored in an independent file that can be imported to both dependent files without causing an import cycle. * Move the classes that reference each other into the same file, to avoid any imports between them. +* Convert import statements to type-only imports (using `import type` syntax) if the imported declarations +are only used as types, as type-only imports do not contribute to cycles.