solar-ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
17 lines (16 loc) • 569 B
TypeScript
import { ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
import { NzAnchorComponent } from './nz-anchor.component';
export declare class NzAnchorLinkComponent implements OnInit, OnDestroy {
el: ElementRef;
private anchorComp;
nzHref: string;
titleStr: string;
titleTpl: TemplateRef<void>;
nzTitle: string | TemplateRef<void>;
nzTemplate: TemplateRef<void>;
active: boolean;
constructor(el: ElementRef, anchorComp: NzAnchorComponent);
ngOnInit(): void;
goToClick(e: Event): void;
ngOnDestroy(): void;
}