ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
24 lines (22 loc) • 649 B
text/typescript
import {
ComponentFactoryResolver,
Directive,
ElementRef,
Renderer2,
ViewContainerRef,
} from '@angular/core';
import { NzTooltipDirective } from '../tooltip/nz-tooltip.directive';
import { NzPopconfirmComponent } from './nz-popconfirm.component';
({
selector: '[nz-popconfirm]',
})
export class NzPopconfirmDirective extends NzTooltipDirective {
constructor(
elementRef: ElementRef,
hostView: ViewContainerRef,
resolver: ComponentFactoryResolver,
renderer: Renderer2,
tooltip: NzPopconfirmComponent) {
super(elementRef, hostView, resolver, renderer, tooltip);
}
}