1 | import { Directive, TemplateRef } from '@angular/core';
|
2 | import { TabDirective } from './tab.directive';
|
3 |
|
4 | export var TabHeadingDirective = (function () {
|
5 | function TabHeadingDirective(templateRef, tab) {
|
6 | tab.headingRef = templateRef;
|
7 | }
|
8 | TabHeadingDirective.decorators = [
|
9 | { type: Directive, args: [{ selector: '[tabHeading]' },] },
|
10 | ];
|
11 |
|
12 | TabHeadingDirective.ctorParameters = function () { return [
|
13 | { type: TemplateRef, },
|
14 | { type: TabDirective, },
|
15 | ]; };
|
16 | return TabHeadingDirective;
|
17 | }());
|
18 |
|
\ | No newline at end of file |