False positive for declared deprecation in TypeScript

SonarQube Enterprise Edition Version 9.7 (build 61563)

We renamed a mapping type and deprecated the old name.

SonarQube believes that we’ve violated typescript:S1874, but this is the place the deprecation is created, not used.

/**
 * @deprecated use WithDatesAsStrings instead
 */
export type WithDatesAsInstants<T> = WithDatesAsStrings<T>;