ng2-bootstrap
Version:
Native Angular Bootstrap Components
24 lines • 758 B
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RatingComponent } from './rating.component';
export var RatingModule = (function () {
function RatingModule() {
}
RatingModule.forRoot = function () {
return {
ngModule: RatingModule,
providers: []
};
};
RatingModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [RatingComponent],
exports: [RatingComponent]
},] },
];
/** @nocollapse */
RatingModule.ctorParameters = function () { return []; };
return RatingModule;
}());
//# sourceMappingURL=rating.module.js.map