Files
ionic-framework/core/src/index.ts
Josh Thomas bd32887767 chore(): update to latest stencil
* fix(): Update to latest stencil and change types to export from interface not index.

* chore(): fix merge conflict of file added.
2018-08-22 18:46:43 +02:00

17 lines
412 B
TypeScript

// lifecycle
export const enum ViewLifecycle {
WillEnter = 'ionViewWillEnter',
DidEnter = 'ionViewDidEnter',
WillLeave = 'ionViewWillLeave',
DidLeave = 'ionViewDidLeave',
WillUnload = 'ionViewWillUnload',
}
// util functions
export * from './utils/helpers';
export * from './utils/haptic';
export * from './utils/framework-delegate';
export * from './utils/platform';
export * from './utils/config';