tab-heading.directive.d.ts 322 B

1234567
  1. import { TemplateRef } from '@angular/core';
  2. import { TabDirective } from './tab.directive';
  3. /** Should be used to mark <ng-template> element as a template for tab heading */
  4. export declare class TabHeadingDirective {
  5. templateRef: TemplateRef<any>;
  6. constructor(templateRef: TemplateRef<any>, tab: TabDirective);
  7. }