mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
chore(angular/providers): making progress on angular providers, fix merge issues
* 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
This commit is contained in:
23
packages/angular/src/module.ts
Normal file
23
packages/angular/src/module.ts
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
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 {
|
||||
|
||||
}
|
Reference in New Issue
Block a user