From 9abacc8ebc1425bce1625003462575f0c61c3a98 Mon Sep 17 00:00:00 2001 From: Jeff Durand Date: Fri, 19 Feb 2021 00:10:33 +0000 Subject: [PATCH] need to export type as type --- plugins/tech-radar/src/components/RadarDescription/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/tech-radar/src/components/RadarDescription/index.ts b/plugins/tech-radar/src/components/RadarDescription/index.ts index 748898cf0b..027407718e 100644 --- a/plugins/tech-radar/src/components/RadarDescription/index.ts +++ b/plugins/tech-radar/src/components/RadarDescription/index.ts @@ -14,4 +14,5 @@ * limitations under the License. */ -export { RadarDescription, Props } from './RadarDescription'; +export { RadarDescription } from './RadarDescription'; +export type { Props } from './RadarDescription';