@aca-1/a2-composer
Version:
Angular 2 Interface for composer
36 lines • 1.23 kB
JavaScript
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.8';
this.build = '2017-05-23.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