UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

24 lines (23 loc) 910 B
/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ElementRef, NgZone, Renderer2 } from '@angular/core'; import { NzTabPositionMode } from './nz-tabset.component'; export declare class NzTabsInkBarDirective { private renderer; private elementRef; private ngZone; nzAnimated: boolean; nzPositionMode: NzTabPositionMode; constructor(renderer: Renderer2, elementRef: ElementRef, ngZone: NgZone); alignToElement(element: HTMLElement): void; setStyles(element: HTMLElement): void; getLeftPosition(element: HTMLElement): string; getElementWidth(element: HTMLElement): string; getTopPosition(element: HTMLElement): string; getElementHeight(element: HTMLElement): string; }