ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
23 lines (22 loc) • 906 B
TypeScript
/**
* @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 { ChangeDetectorRef, TemplateRef } from '@angular/core';
import { NzNoAnimationDirective, NzTSType } from 'ng-zorro-antd/core';
import { NzToolTipComponent } from 'ng-zorro-antd/tooltip';
export declare class NzPopoverComponent extends NzToolTipComponent {
noAnimation?: NzNoAnimationDirective | undefined;
_prefix: string;
/**
* Use `neverUsedTemplate` to force `nzTemplate` to be catched by `nzPopoverContent`.
*/
nzTitle: NzTSType;
nzTitleTemplate: TemplateRef<void>;
nzContent: NzTSType;
nzContentTemplate: TemplateRef<void>;
constructor(cdr: ChangeDetectorRef, noAnimation?: NzNoAnimationDirective | undefined);
}