mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
// export module
|
|
export { IonicModule } from './ionic-module';
|
|
|
|
// export auto generated directive
|
|
export * from './directives/proxies';
|
|
|
|
// export custom directives
|
|
export * from './directives';
|
|
|
|
// export custom providers
|
|
export * from './providers';
|
|
|
|
// ionic types
|
|
export * from './types/interfaces';
|
|
|
|
// ionic route reuse strategy
|
|
export * from './util/ionic-router-reuse-strategy';
|