import { MetricKey as NonDeprecatedMetricKey, SonarUrlProcessorFunc as NonDeprecatedSonarUrlProcessorFunc } from '@backstage/plugin-sonarqube-react'; export interface InstanceUrlWrapper { instanceUrl: string; } export interface FindingsWrapper { analysisDate: string; measures: Measure[]; } /** * @deprecated use the same type from `@backstage/plugin-sonarqube-react` instead */ export type MetricKey = NonDeprecatedMetricKey; export interface Measure { metric: MetricKey; value: string; } /** * @deprecated use the same type from `@backstage/plugin-sonarqube-react` instead */ export type SonarUrlProcessorFunc = NonDeprecatedSonarUrlProcessorFunc;