Skip to content

Commit fbd6c00

Browse files
committed
fix importing
1 parent b602f4d commit fbd6c00

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

lib/actions/index.ts

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
export * as BackButton from './backButton'
2-
export * as BackgroundColor from './backgroundColor'
1+
import * as BackButton from './backButton'
2+
import * as BackgroundColor from './backgroundColor'
3+
import * as ClosingConfirmation from './closingConfirmation'
4+
import * as CloudStorage from './cloudStorage'
5+
import * as Events from './events'
6+
import * as Expand from './expand'
7+
import * as HapticFeedback from './hapticFeedback'
8+
import * as HeaderColor from './headerColor'
9+
import * as VerticalSwipes from './verticalSwipes'
10+
311
export { close } from './close'
4-
export * as ClosingConfirmation from './closingConfirmation'
5-
export * as CloudStorage from './cloudStorage'
6-
export * as Events from './events'
7-
export * as Expand from './expand'
8-
export * as HapticFeedback from './hapticFeedback'
9-
export * as HeaderColor from './headerColor'
1012
export { isVersionAtLeast } from './isVersionAtLeast'
1113
export { ready } from './ready'
12-
export * as VerticalSwipes from './verticalSwipes'
14+
export {
15+
BackButton,
16+
BackgroundColor,
17+
ClosingConfirmation,
18+
CloudStorage,
19+
Events,
20+
Expand,
21+
HapticFeedback,
22+
HeaderColor,
23+
VerticalSwipes
24+
}

0 commit comments

Comments
 (0)