You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.3 KiB
30 lines
1.3 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { InjectionToken, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
import { CdkPortal } from '@angular/cdk/portal';
|
|
/**
|
|
* Injection token that can be used to reference instances of `MatTabLabel`. It serves as
|
|
* alternative token to the actual `MatTabLabel` class which could cause unnecessary
|
|
* retention of the class and its directive metadata.
|
|
*/
|
|
import * as ɵngcc0 from '@angular/core';
|
|
export declare const MAT_TAB_LABEL: InjectionToken<MatTabLabel>;
|
|
/**
|
|
* Used to provide a tab label to a tab without causing a circular dependency.
|
|
* @docs-private
|
|
*/
|
|
export declare const MAT_TAB: InjectionToken<any>;
|
|
/** Used to flag tab labels for use with the portal directive */
|
|
export declare class MatTabLabel extends CdkPortal {
|
|
_closestTab: any;
|
|
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef, _closestTab: any);
|
|
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatTabLabel, [null, null, { optional: true; }]>;
|
|
static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatTabLabel, "[mat-tab-label], [matTabLabel]", never, {}, {}, never>;
|
|
}
|
|
|
|
//# sourceMappingURL=tab-label.d.ts.map
|