@cause-911/devextreme
Version:
Run `npm install @cause-911/devextreme --save` to add this library to your project
37 lines (36 loc) • 1.03 kB
TypeScript
import { EventEmitter, NgZone } from '@angular/core';
import { TranslateService } from '@cause-911/core';
export declare class CausePopupConfirmComponent {
private zone;
private translate;
title: string;
text: string;
showTitle: boolean;
type: string;
visible: boolean;
visibleChange: EventEmitter<boolean>;
ok: EventEmitter<void>;
cancel: EventEmitter<void>;
done: EventEmitter<boolean>;
barItems: any;
botomToolbarItems: any[];
translationKeyParent: string;
translationKeys: string[];
types: {
ok: string;
cancel: string;
close: string;
yesno: string;
okcancel: string;
okclose: string;
savecancel: string;
};
static onOkClick(e: any): void;
static onCancelClick(e: any): void;
constructor(zone: NgZone, translate: TranslateService);
ngOnInit(): void;
getTranslations(): void;
onVisibleChange(): void;
initBarText(translations: string[]): void;
popupHidden(): void;
}