ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2
53 lines • 1.34 kB
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { BackdropModule } from '../backdrop/backdrop.module';
import { ButtonModule } from '../button/button.module';
import { PickerCmp } from './picker-component';
import { PickerColumnCmp } from './picker-column';
/**
* @hidden
*/
export class PickerModule {
/**
* @return {?}
*/
static forRoot() {
return {
ngModule: PickerModule, providers: []
};
}
}
PickerModule.decorators = [
{ type: NgModule, args: [{
imports: [
BackdropModule,
ButtonModule,
CommonModule
],
declarations: [
PickerCmp,
PickerColumnCmp
],
exports: [
PickerCmp,
PickerColumnCmp
],
entryComponents: [
PickerCmp
]
},] },
];
/**
* @nocollapse
*/
PickerModule.ctorParameters = () => [];
function PickerModule_tsickle_Closure_declarations() {
/** @type {?} */
PickerModule.decorators;
/**
* @nocollapse
* @type {?}
*/
PickerModule.ctorParameters;
}
//# sourceMappingURL=picker.module.js.map