-
Notifications
You must be signed in to change notification settings - Fork 13.5k
/
Copy pathindex.ts
34 lines (33 loc) · 1.36 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import 'ionicons';
export { createAnimation } from './utils/animation/animation';
export { getIonPageElement } from './utils/transition';
export { iosTransitionAnimation } from './utils/transition/ios.transition';
export { mdTransitionAnimation } from './utils/transition/md.transition';
export { mdEnterModalAnimation } from './components/modal/animations/md.enter'
export { mdLeaveModalAnimation } from './components/modal/animations/md.leave'
export { getTimeGivenProgression } from './utils/animation/cubic-bezier';
export { createGesture } from './utils/gesture';
export { initialize } from './global/ionic-global';
export { componentOnReady } from './utils/helpers';
export { isPlatform, Platforms, PlatformConfig, getPlatforms } from './utils/platform';
export { IonicSafeString } from './utils/sanitization';
export { IonicConfig, getMode, setupConfig } from './utils/config';
export { openURL } from './utils/theme';
export {
LIFECYCLE_WILL_ENTER,
LIFECYCLE_DID_ENTER,
LIFECYCLE_WILL_LEAVE,
LIFECYCLE_DID_LEAVE,
LIFECYCLE_WILL_UNLOAD,
} from './components/nav/constants';
export { menuController } from './utils/menu-controller';
export {
alertController,
actionSheetController,
modalController,
loadingController,
pickerController,
popoverController,
toastController,
} from './utils/overlays';
export { IonicSlides } from './components/slides/IonicSlides';