Skip to content

Commit

Permalink
fix importing
Browse files Browse the repository at this point in the history
  • Loading branch information
kolirt committed Jul 28, 2024
1 parent b602f4d commit fbd6c00
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions lib/actions/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
export * as BackButton from './backButton'
export * as BackgroundColor from './backgroundColor'
import * as BackButton from './backButton'
import * as BackgroundColor from './backgroundColor'
import * as ClosingConfirmation from './closingConfirmation'
import * as CloudStorage from './cloudStorage'
import * as Events from './events'
import * as Expand from './expand'
import * as HapticFeedback from './hapticFeedback'
import * as HeaderColor from './headerColor'
import * as VerticalSwipes from './verticalSwipes'

export { close } from './close'
export * as ClosingConfirmation from './closingConfirmation'
export * as CloudStorage from './cloudStorage'
export * as Events from './events'
export * as Expand from './expand'
export * as HapticFeedback from './hapticFeedback'
export * as HeaderColor from './headerColor'
export { isVersionAtLeast } from './isVersionAtLeast'
export { ready } from './ready'
export * as VerticalSwipes from './verticalSwipes'
export {
BackButton,
BackgroundColor,
ClosingConfirmation,
CloudStorage,
Events,
Expand,
HapticFeedback,
HeaderColor,
VerticalSwipes
}

0 comments on commit fbd6c00

Please sign in to comment.