mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 10:41:13 +08:00

* chore(input): remove interface .d.ts file, move to .ts file * refactor(angular): start working on providers, etc * chore(angular/dependencies): update deps for angular demo
23 lines
402 B
TypeScript
23 lines
402 B
TypeScript
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
|
|
import { IonNavDelegate } from './directives/ion-nav';
|
|
import { AlertController } from './providers/alert-controller';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
IonNavDelegate
|
|
],
|
|
exports: [
|
|
IonNavDelegate
|
|
],
|
|
schemas: [
|
|
CUSTOM_ELEMENTS_SCHEMA
|
|
],
|
|
providers: [
|
|
AlertController
|
|
]
|
|
})
|
|
export class IonicAngularModule {
|
|
|
|
} |