From 9bcfc86591d702ef9f4196291e64cf72f07571e4 Mon Sep 17 00:00:00 2001 From: instauro Date: Sun, 5 May 2024 19:00:17 +0200 Subject: [PATCH] fix: Use type export for interface reexports Signed-off-by: instauro --- src/components/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/index.ts b/src/components/index.ts index 30378539..a4fdbb6c 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -2,13 +2,13 @@ require('../styles/main.scss'); export { Utils } from './utils'; export { Layout } from './layout/layout'; -export { Page, PageContext, PageContextProps } from './page/page'; +export { Page, PageContext, type PageContextProps } from './page/page'; export { MockupList } from './mockup-list/mockup-list'; export { DropDown } from './dropdown/dropdown'; -export { DropDownMenu, DropDownMenuProps, MenuItem } from './dropdown-menu'; +export { DropDownMenu, type DropDownMenuProps, type MenuItem } from './dropdown-menu'; export { Checkbox } from './checkbox'; -export { TopBarProps, Toolbar, TopBarFilter } from './top-bar/top-bar'; -export { Tab, Tabs } from './tabs/tabs'; +export { type TopBarProps, type Toolbar, type TopBarFilter } from './top-bar/top-bar'; +export { type Tab, Tabs } from './tabs/tabs'; export { Duration } from './duration'; export { SlidingPanel } from './sliding-panel/sliding-panel'; export { LogsViewer } from './logs-viewer/logs-viewer'; @@ -16,7 +16,7 @@ export * from './notifications/notifications'; export * from './notifications/notification-manager'; export * from './popup/popup'; export * from './popup/popup-manager'; -export { Select, SelectOption, SelectProps } from './select/select'; +export { Select, type SelectOption, type SelectProps } from './select/select'; export { HelpIcon } from './help-icon/help-icon'; export { Tooltip } from './tooltip/tooltip'; export * from './ticker';