Last change
on this file 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 | */
|
---|
8 | import { BooleanInput } from '@angular/cdk/coercion';
|
---|
9 | import { ElementRef } from '@angular/core';
|
---|
10 | import { CanDisable } from '@angular/material/core';
|
---|
11 | /** @docs-private */
|
---|
12 | declare 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 | */
|
---|
19 | export 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 | }
|
---|
28 | export {};
|
---|
Note:
See
TracBrowser
for help on using the repository browser.