[6a3a178] | 1 | /**
|
---|
| 2 | * @license
|
---|
| 3 | * Copyright Google LLC All Rights Reserved.
|
---|
| 4 | *
|
---|
| 5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
| 6 | * found in the LICENSE file at https://angular.io/license
|
---|
| 7 | */
|
---|
| 8 | import { InjectionToken, TemplateRef, ViewContainerRef } from '@angular/core';
|
---|
| 9 | import { CdkPortal } from '@angular/cdk/portal';
|
---|
| 10 | /**
|
---|
| 11 | * Injection token that can be used to reference instances of `MatTabLabel`. It serves as
|
---|
| 12 | * alternative token to the actual `MatTabLabel` class which could cause unnecessary
|
---|
| 13 | * retention of the class and its directive metadata.
|
---|
| 14 | */
|
---|
| 15 | import * as ɵngcc0 from '@angular/core';
|
---|
| 16 | export declare const MAT_TAB_LABEL: InjectionToken<MatTabLabel>;
|
---|
| 17 | /**
|
---|
| 18 | * Used to provide a tab label to a tab without causing a circular dependency.
|
---|
| 19 | * @docs-private
|
---|
| 20 | */
|
---|
| 21 | export declare const MAT_TAB: InjectionToken<any>;
|
---|
| 22 | /** Used to flag tab labels for use with the portal directive */
|
---|
| 23 | export declare class MatTabLabel extends CdkPortal {
|
---|
| 24 | _closestTab: any;
|
---|
| 25 | constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef, _closestTab: any);
|
---|
| 26 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatTabLabel, [null, null, { optional: true; }]>;
|
---|
| 27 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatTabLabel, "[mat-tab-label], [matTabLabel]", never, {}, {}, never>;
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | //# sourceMappingURL=tab-label.d.ts.map |
---|