angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
37 lines • 1.51 kB
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FormioModule } from '../index';
import { FormioAuthComponent } from './auth.component';
import { FormioAuthLoginComponent } from './login.component';
import { FormioAuthRegisterComponent } from './register.component';
var FormioAuthModule = /** @class */ (function () {
function FormioAuthModule() {
}
FormioAuthModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
FormioModule,
RouterModule.forChild([])
],
declarations: [
FormioAuthComponent,
FormioAuthLoginComponent,
FormioAuthRegisterComponent
]
},] },
];
/** @nocollapse */
FormioAuthModule.ctorParameters = function () { return []; };
return FormioAuthModule;
}());
export { FormioAuthModule };
export var FormioAuth = FormioAuthModule;
export { FormioAuthRoutes } from './auth.routes';
export { FormioAuthConfig } from './auth.config';
export { FormioAuthService } from './auth.service';
export { FormioAuthComponent } from './auth.component';
export { FormioAuthLoginComponent } from './login.component';
export { FormioAuthRegisterComponent } from './register.component';
//# sourceMappingURL=index.js.map