@angular-mdl/core
Version:
Angular components, directives and styles based on material design lite https://getmdl.io.
16 lines (15 loc) • 711 B
TypeScript
import { EventEmitter } from "@angular/core";
import { MdlDialogService } from "./mdl-dialog.service";
import * as i0 from "@angular/core";
export declare class MdlAlertComponent {
private mdlDialogService;
title: string | undefined;
message: string;
okText: string | undefined;
display: string;
confirmed: EventEmitter<any>;
constructor(mdlDialogService: MdlDialogService);
show(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MdlAlertComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MdlAlertComponent, "mdl-alert", ["mdlAlert"], { "title": "title"; "message": "message"; "okText": "okText"; }, { "confirmed": "confirmed"; }, never, never, false, never>;
}