Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
389 B

import { ConfirmationService } from '../../services/confirmation.service';
import { Toaster } from '../../models/toaster';
export declare class ConfirmationComponent {
private confirmationService;
confirm: Toaster.Status;
reject: Toaster.Status;
dismiss: Toaster.Status;
constructor(confirmationService: ConfirmationService);
close(status: Toaster.Status): void;
}