gentics-ui-core
Version:
This is the common core framework for the Gentics CMS and Mesh UI, and other Angular applications.
15 lines (14 loc) • 607 B
TypeScript
import { IModalDialog } from './modal-interfaces';
import * as i0 from "@angular/core";
/**
* Internal. Used to house the contents of the ModalService.fromElement() method.
*/
export declare class BlankModal implements IModalDialog {
closeFn: (val: any) => void;
cancelFn: (val?: any) => void;
constructor();
registerCloseFn(close: (val: any) => void): void;
registerCancelFn(cancel: (val?: any) => void): void;
static ɵfac: i0.ɵɵFactoryDeclaration<BlankModal, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<BlankModal, "gtx-blank-modal", never, {}, {}, never, never>;
}