ng2-bootstrap
Version:
Native Angular Bootstrap Components
18 lines • 691 B
JavaScript
import { Directive, TemplateRef } from '@angular/core';
import { TabDirective } from './tab.directive';
/** Should be used to mark <template> element as a template for tab heading */
export var TabHeadingDirective = (function () {
function TabHeadingDirective(templateRef, tab) {
tab.headingRef = templateRef;
}
TabHeadingDirective.decorators = [
{ type: Directive, args: [{ selector: '[tabHeading]' },] },
];
/** @nocollapse */
TabHeadingDirective.ctorParameters = function () { return [
{ type: TemplateRef, },
{ type: TabDirective, },
]; };
return TabHeadingDirective;
}());
//# sourceMappingURL=tab-heading.directive.js.map