fabric8-planner
Version:
A planner front-end for Fabric8.
30 lines • 1.17 kB
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
import { MarkdownModule, WidgetsModule } from 'ngx-widgets';
import { SafePipeModule } from '../../pipes/safe.module';
import { CommentComponent } from './comment.component';
import { UserAvatarModule } from './../../widgets/user-avatar/user-avatar.module';
var CommentModule = /** @class */ (function () {
function CommentModule() {
}
CommentModule.decorators = [
{ type: NgModule, args: [{
declarations: [CommentComponent],
imports: [
CommonModule,
SafePipeModule,
MarkdownModule,
TooltipModule,
WidgetsModule,
UserAvatarModule
],
exports: [CommentComponent]
},] },
];
/** @nocollapse */
CommentModule.ctorParameters = function () { return []; };
return CommentModule;
}());
export { CommentModule };
//# sourceMappingURL=comment.module.js.map