ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
22 lines (21 loc) • 722 B
TypeScript
/**
* 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 { FocusableOption } from '@angular/cdk/a11y';
import { ElementRef } from '@angular/core';
import { NzTabComponent } from './tab.component';
export declare class NzTabNavItemDirective implements FocusableOption {
elementRef: ElementRef<HTMLElement>;
disabled: boolean;
tab: NzTabComponent;
active: boolean;
private el;
private parentElement;
constructor(elementRef: ElementRef<HTMLElement>);
focus(): void;
get width(): number;
get height(): number;
get left(): number;
get top(): number;
}