content-ref.class.d.ts 331 B

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