UNPKG

ng-zorro-antd

Version:

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

22 lines (21 loc) 897 B
/** * 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 } from '@angular/core'; import { NzTabPositionMode } from './interfaces'; export declare class NzTabsInkBarDirective { private elementRef; private ngZone; animationMode?: string | undefined; position: NzTabPositionMode; animated: boolean; get _animated(): boolean; constructor(elementRef: ElementRef<HTMLElement>, ngZone: NgZone, animationMode?: string | undefined); alignToElement(element: HTMLElement): void; setStyles(element: HTMLElement): void; getLeftPosition(element: HTMLElement): string; getElementWidth(element: HTMLElement): string; getTopPosition(element: HTMLElement): string; getElementHeight(element: HTMLElement): string; }