Skip to content

Commit

Permalink
Remove type export
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUltDev committed Jun 8, 2024
1 parent 9685a2d commit 6796ef2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-exo",
"version": "0.14.0",
"version": "0.15.0",
"type": "module",
"types": "./gen/types/index.d.ts",
"scripts": {
Expand Down
48 changes: 24 additions & 24 deletions library/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
export default {}

// Assets
export type * from './assets/icon/Icon.export';
export type * from './assets/image/Image.export';
export type * from './assets/video/Video.export';
export type * from './assets/lottie/Lottie.export';
export type * from './assets/rive/Rive.export';
export * from './assets/icon/Icon.export';
export * from './assets/image/Image.export';
export * from './assets/video/Video.export';
export * from './assets/lottie/Lottie.export';
export * from './assets/rive/Rive.export';

// Layout
export type * from './layout/navigation/Navigation.export';
export type * from './layout/motion/Motion.export';
export type * from './layout/gesture/Gesture.export';
export type * from './layout/safe-area/SafeArea.export';
export * from './layout/navigation/Navigation.export';
export * from './layout/motion/Motion.export';
export * from './layout/gesture/Gesture.export';
export * from './layout/safe-area/SafeArea.export';

// Services
export type * from './services/storage/Storage.export';
export type * from './services/device/Device.export';
export type * from './services/redux/Redux.export';
export type * from './services/i18n/I18n.export';
export type * from './services/form/Form.export';
export * from './services/storage/Storage.export';
export * from './services/device/Device.export';
export * from './services/redux/Redux.export';
export * from './services/i18n/I18n.export';
export * from './services/form/Form.export';

// Widgets
export type * from './widgets/calendar/Calendar.export';
export type * from './widgets/progress/Progress.export';
export type * from './widgets/slider/Slider.export';
export type * from './widgets/picker/Picker.export';
export type * from './widgets/radio/Radio.export';
export type * from './widgets/switch/Switch.export';
export type * from './widgets/checkbox/Checkbox.export';
export * from './widgets/calendar/Calendar.export';
export * from './widgets/progress/Progress.export';
export * from './widgets/slider/Slider.export';
export * from './widgets/picker/Picker.export';
export * from './widgets/radio/Radio.export';
export * from './widgets/switch/Switch.export';
export * from './widgets/checkbox/Checkbox.export';

// Hooks
export type * from './hooks/useVariants';
export * from './hooks/useVariants';

// Plugins
export type * from './assets/icon/babel-plugin/extract';
export type * from './assets/icon/babel-plugin/transform';
export * from './assets/icon/babel-plugin/extract';
export * from './assets/icon/babel-plugin/transform';

0 comments on commit 6796ef2

Please sign in to comment.