ngx-contentful-rich-text
Version:
Angular renderer for the Contentful rich text field type
13 lines (12 loc) • 616 B
TypeScript
import { OnInit, ViewContainerRef } from '@angular/core';
import { Text } from '../classes/mark-renderer.class';
import { ComponentRendererService } from '../services/component-renderer.service';
import { RendererProviderService } from '../services/renderer-provider.service';
export declare class MarkRendererHostDirective implements OnInit {
private viewContainerRef;
private componentRenderer;
private rendererProvider;
node: Text;
constructor(viewContainerRef: ViewContainerRef, componentRenderer: ComponentRendererService, rendererProvider: RendererProviderService);
ngOnInit(): void;
}