From b35c7d61cecbc54a724908779ac92a8d962bc31d Mon Sep 17 00:00:00 2001 From: Ryan Vazquez Date: Wed, 3 Mar 2021 10:46:52 -0500 Subject: [PATCH] export all alerts Signed-off-by: Ryan Vazquez --- plugins/cost-insights/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/cost-insights/src/index.ts b/plugins/cost-insights/src/index.ts index 427e6f062d..b0b82eca5b 100644 --- a/plugins/cost-insights/src/index.ts +++ b/plugins/cost-insights/src/index.ts @@ -21,9 +21,9 @@ export { CostInsightsProjectGrowthInstructionsPage, CostInsightsLabelDataflowInstructionsPage, } from './plugin'; -export { ProjectGrowthAlert, UnlabeledDataflowAlert } from './alerts'; export { ExampleCostInsightsClient } from './example'; export { BarChart, LegendItem, CostGrowth } from './components'; export * from './api'; +export * from './alerts'; export * from './types'; export * from './testUtils';