Since a few days we have a lot of code smells in one of our projects. Apparently the rule typescript:S2814 has been updated and it now detects the following code as smell:
export const SET_COUNTRY_ACTION = 'SET_COUNTRY_ACTION';
export type SET_COUNTRY_ACTION = typeof SET_COUNTRY_ACTION;
Is there any specific reason that this is detected as a redeclaration? Because one is a constant and the other a type, I think this should not be reported as an error.