SonarLint gives the following and I have not found how to solve it since it is a global variable.
CodePudding user response:
Do what the linter says. Create alias for union type.
type InformationType = 'someValue' | 'anotherValue';
// ....
informationType: InformationType;