ng-transclude.directive.d.ts 352 B

123456789
  1. import { TemplateRef, ViewContainerRef } from '@angular/core';
  2. export declare class NgTranscludeDirective {
  3. viewRef: ViewContainerRef;
  4. protected _viewRef: ViewContainerRef;
  5. protected _ngTransclude: TemplateRef<any>;
  6. /* tslint:disable-next-line:no-any */
  7. ngTransclude: TemplateRef<any>;
  8. constructor(viewRef: ViewContainerRef);
  9. }