/** * @copyright Valor Software * @copyright Angular ng-bootstrap team */ import { ComponentRef, ViewRef } from '@angular/core'; export class ContentRef { nodes: any[]; viewRef?: ViewRef; componentRef?: ComponentRef; constructor( nodes: any[], viewRef?: ViewRef, componentRef?: ComponentRef ) { this.nodes = nodes; this.viewRef = viewRef; this.componentRef = componentRef; } }