UNPKG

ng-zorro-antd

Version:

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

24 lines (23 loc) 1.22 kB
/** * 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 { CdkPortalOutlet } from '@angular/cdk/portal'; import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { NzModalI18nInterface } from 'ng-zorro-antd/i18n'; import { BaseModalContainerComponent } from './modal-container.directive'; import * as i0 from "@angular/core"; export declare class NzModalConfirmContainerComponent extends BaseModalContainerComponent implements OnInit { portalOutlet: CdkPortalOutlet; modalElementRef: ElementRef<HTMLDivElement>; readonly cancelTriggered: EventEmitter<void>; readonly okTriggered: EventEmitter<void>; locale: NzModalI18nInterface; private i18n; constructor(); ngOnInit(): void; onCancel(): void; onOk(): void; static ɵfac: i0.ɵɵFactoryDeclaration<NzModalConfirmContainerComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<NzModalConfirmContainerComponent, "nz-modal-confirm-container", ["nzModalConfirmContainer"], {}, { "cancelTriggered": "cancelTriggered"; "okTriggered": "okTriggered"; }, never, never, true, never>; }