UNPKG

ionic-captcha

Version:
28 lines 1.11 kB
import { NgModule } from '@angular/core'; import { IonicPageModule, IonicModule } from 'ionic-angular'; import { CaptchaComponent } from './captcha'; import { FormsModule } from '@angular/forms'; import { CommonModule } from '@angular/common'; import { CaptchaProvider } from './../providers/captcha-provider'; var CaptchaComponentModule = (function () { function CaptchaComponentModule() { } CaptchaComponentModule.forRoot = function () { return { ngModule: CaptchaComponentModule, providers: [CaptchaProvider] }; }; CaptchaComponentModule.decorators = [ { type: NgModule, args: [{ declarations: [CaptchaComponent], exports: [CaptchaComponent], imports: [IonicModule, CommonModule, FormsModule, IonicPageModule.forChild(CaptchaComponent)] },] }, ]; /** @nocollapse */ CaptchaComponentModule.ctorParameters = function () { return []; }; return CaptchaComponentModule; }()); export { CaptchaComponentModule }; //# sourceMappingURL=captcha.module.js.map