UNPKG

331 BTypeScriptView Raw
1/**
2 * @copyright Valor Software
3 * @copyright Angular ng-bootstrap team
4 */
5import { ComponentRef, ViewRef } from '@angular/core';
6export declare class ContentRef {
7 nodes: any[];
8 viewRef?: ViewRef;
9 componentRef?: ComponentRef<any>;
10 constructor(nodes: any[], viewRef?: ViewRef, componentRef?: ComponentRef<any>);
11}