Skip to content

Commit

Permalink
fix: Use type export for interface reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
instauro committed May 5, 2024
1 parent 4848ea1 commit 296cebf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ 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';
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';
Expand Down

0 comments on commit 296cebf

Please sign in to comment.