UNPKG

ngx-wysiwyg

Version:
37 lines (31 loc) 822 B
import { Component, NgModule } from '@angular/core'; class NgxWysiwygComponent { constructor() { } ngOnInit() { } } NgxWysiwygComponent.decorators = [ { type: Component, args: [{ selector: 'ngx-wysiwyg', template: "<p>NgxWysiwygComponent works!</p>", styles: [""] },] } ]; NgxWysiwygComponent.ctorParameters = () => []; class WysiwygModule { } WysiwygModule.decorators = [ { type: NgModule, args: [{ declarations: [NgxWysiwygComponent], imports: [], exports: [NgxWysiwygComponent], },] } ]; /* * Public API Surface of ngx-wysiwyg */ /** * Generated bundle index. Do not edit. */ export { WysiwygModule, NgxWysiwygComponent as ɵa }; //# sourceMappingURL=ngx-wysiwyg.js.map