source: trip-planner-front/node_modules/@angular/material/tabs/tab-label-wrapper.d.ts.__ivy_ngcc_bak@ 6c1585f

Last change on this file since 6c1585f 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 { BooleanInput } from '@angular/cdk/coercion';
9import { ElementRef } from '@angular/core';
10import { CanDisable } from '@angular/material/core';
11/** @docs-private */
12declare const _MatTabLabelWrapperBase: import("@angular/material/core/common-behaviors/constructor").Constructor<CanDisable> & import("@angular/material/core/common-behaviors/constructor").AbstractConstructor<CanDisable> & {
13 new (): {};
14};
15/**
16 * Used in the `mat-tab-group` view to display tab labels.
17 * @docs-private
18 */
19export declare class MatTabLabelWrapper extends _MatTabLabelWrapperBase implements CanDisable {
20 elementRef: ElementRef;
21 constructor(elementRef: ElementRef);
22 /** Sets focus on the wrapper element */
23 focus(): void;
24 getOffsetLeft(): number;
25 getOffsetWidth(): number;
26 static ngAcceptInputType_disabled: BooleanInput;
27}
28export {};
Note: See TracBrowser for help on using the repository browser.