source: trip-planner-front/node_modules/@angular/material/tabs/tab-label-wrapper.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 { BooleanInput } from '@angular/cdk/coercion';
9import { ElementRef } from '@angular/core';
10import { CanDisable } from '@angular/material/core';
11/** @docs-private */
12import * as ɵngcc0 from '@angular/core';
13declare const _MatTabLabelWrapperBase: import("@angular/material/core/common-behaviors/constructor").Constructor<CanDisable> & import("@angular/material/core/common-behaviors/constructor").AbstractConstructor<CanDisable> & {
14 new (): {};
15};
16/**
17 * Used in the `mat-tab-group` view to display tab labels.
18 * @docs-private
19 */
20export declare class MatTabLabelWrapper extends _MatTabLabelWrapperBase implements CanDisable {
21 elementRef: ElementRef;
22 constructor(elementRef: ElementRef);
23 /** Sets focus on the wrapper element */
24 focus(): void;
25 getOffsetLeft(): number;
26 getOffsetWidth(): number;
27 static ngAcceptInputType_disabled: BooleanInput;
28 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatTabLabelWrapper, never>;
29 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatTabLabelWrapper, "[matTabLabelWrapper]", never, { "disabled": "disabled"; }, {}, never>;
30}
31export {};
32
33//# sourceMappingURL=tab-label-wrapper.d.ts.map
Note: See TracBrowser for help on using the repository browser.