UNPKG

ngx-mat-lib

Version:

A bunch of utilities and components to use in your Angular 7+ apps!

19 lines (18 loc) 1.1 kB
import { ComponentFactoryResolver, ComponentRef, OnInit, ViewContainerRef } from "@angular/core"; import { MatDialogRef } from "@angular/material"; import { XmatConfirmDialogData } from "../../models/xmat-confirm-dialog.model"; import { XmatDialogContentComponent } from "./xmat-dialog-content.component"; export declare class XmatConfirmDialogComponent implements OnInit { protected _dialogRef: MatDialogRef<XmatConfirmDialogComponent>; protected _resolver: ComponentFactoryResolver; protected _viewContainerRef: ViewContainerRef; data: XmatConfirmDialogData; dialogContentOutlet: XmatDialogContentComponent; protected _dialogContentClass: typeof XmatDialogContentComponent; protected _dialogContentRef: ComponentRef<XmatDialogContentComponent>; constructor(_dialogRef: MatDialogRef<XmatConfirmDialogComponent>, _resolver: ComponentFactoryResolver, _viewContainerRef: ViewContainerRef, data: XmatConfirmDialogData); ngOnInit(): void; onNoClick(): void; onYesClick(): void; protected _constructContent(): XmatDialogContentComponent; }