UNPKG

@acaprojects/a2-composer

Version:
36 lines 1.23 kB
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { HttpModule } from '@angular/http'; import 'rxjs/Rx'; import { DIRECTIVES } from './directives'; import { PIPES } from './pipes'; import { SERVICES } from './services'; import { COMPOSER } from './settings'; export * from './directives'; export * from './pipes'; export * from './services'; export * from './data-store.broker'; var ComposerModule = (function () { function ComposerModule() { this.version = '0.6.21'; this.build = '2017-10-24.v1'; if (!ComposerModule.init) { ComposerModule.init = true; COMPOSER.version(this.version, this.build); } } return ComposerModule; }()); export { ComposerModule }; ComposerModule.init = false; ComposerModule.decorators = [ { type: NgModule, args: [{ declarations: DIRECTIVES.concat(PIPES), imports: [HttpModule, CommonModule], exports: DIRECTIVES.concat(PIPES), providers: SERVICES.slice(), },] }, ]; ComposerModule.ctorParameters = function () { return []; }; export var ACA_COMPOSER_MODULE = ComposerModule; //# sourceMappingURL=index.js.map