source: trip-planner-front/node_modules/@angular/material/tabs/tab-label.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
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 */
8import { InjectionToken, TemplateRef, ViewContainerRef } from '@angular/core';
9import { 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 */
15import * as ɵngcc0 from '@angular/core';
16export 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 */
21export declare const MAT_TAB: InjectionToken<any>;
22/** Used to flag tab labels for use with the portal directive */
23export 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
Note: See TracBrowser for help on using the repository browser.