@nova-ui/bits
Version:
SolarWinds Nova Framework
9 lines (8 loc) • 317 B
TypeScript
import { ComponentRef, ViewRef } from "@angular/core";
/** @ignore */
export declare class ContentRef {
nodes: any[];
viewRef?: ViewRef | undefined;
componentRef?: ComponentRef<any> | undefined;
constructor(nodes: any[], viewRef?: ViewRef | undefined, componentRef?: ComponentRef<any> | undefined);
}