angular-froala-wysiwyg-2.7.1
Version:
Angular 2 and Angular 4 bindings for Froala WYSIWYG HTML rich text editor
20 lines • 717 B
JavaScript
import { NgModule } from '@angular/core';
import { FroalaEditorDirective } from './editor.directive';
var FroalaEditorModule = (function () {
function FroalaEditorModule() {
}
FroalaEditorModule.forRoot = function () {
return { ngModule: FroalaEditorModule, providers: [] };
};
FroalaEditorModule.decorators = [
{ type: NgModule, args: [{
declarations: [FroalaEditorDirective],
exports: [FroalaEditorDirective]
},] },
];
/** @nocollapse */
FroalaEditorModule.ctorParameters = function () { return []; };
return FroalaEditorModule;
}());
export { FroalaEditorModule };
//# sourceMappingURL=editor.module.js.map