The usage of ES2015 module syntax is favored over custom TypeScript modules and namespaces as per the rule @typescript-eslint/no-namespace. So, it is advised to rewrite the sentence accordingly in any context if necessary.
46👍 ✅ This is a lint error caused by the no-namespace lint rule. If you find the rule helpful and want to keep it, you will need to modify your code by replacing namespaces with imports and exports. The documentation of the rule provides details on what changes are needed for a fix. If you … Read more