fix import; don't make type public

This commit is contained in:
Ryan Vazquez
2021-01-25 20:44:41 -05:00
parent c81687ade1
commit 09771bdf46
2 changed files with 2 additions and 1 deletions
@@ -18,3 +18,4 @@ export { ProjectGrowthAlert } from './ProjectGrowthAlert';
export { UnlabeledDataflowAlert } from './UnlabeledDataflowAlert';
export { KubernetesMigrationAlert } from './KubernetesMigrationAlert';
export type { MigrationAlert } from './KubernetesMigrationAlert';
export type { MigrationData } from './KubernetesMigrationAlert';
@@ -19,7 +19,7 @@ import { Box } from '@material-ui/core';
import { InfoCard } from '@backstage/core';
import { MigrationBarChartLegend } from './MigrationBarChartLegend';
import { MigrationBarChart } from './MigrationBarChart';
import { MigrationData } from '../../types';
import { MigrationData } from '../../alerts';
type MigrationAlertProps = {
data: MigrationData;