mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
20 lines
455 B
TypeScript
20 lines
455 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';
|
|
|
|
// interface
|
|
export * from './interface';
|