import { Component, Input } from '@angular/core'; @Component({ selector: 'ngx-sunview', template: `
`, }) export class NgxSunViewComponent { /** * HTML content generated by the editor to display */ @Input() content: string; /** * Bypass angular's DomSanitizer * @default false */ @Input() bypassSantiziser: boolean = false; }