source: trip-planner-front/node_modules/@angular/material/tabs/tab-label.d.ts.__ivy_ngcc_bak@ 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.0 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 */
15export declare const MAT_TAB_LABEL: InjectionToken<MatTabLabel>;
16/**
17 * Used to provide a tab label to a tab without causing a circular dependency.
18 * @docs-private
19 */
20export declare const MAT_TAB: InjectionToken<any>;
21/** Used to flag tab labels for use with the portal directive */
22export declare class MatTabLabel extends CdkPortal {
23 _closestTab: any;
24 constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef, _closestTab: any);
25}
Note: See TracBrowser for help on using the repository browser.