Fixed #1836 - For ConfirmationService

pull/1846/head
mertsincan 2021-12-01 16:21:27 +03:00
parent b28aa82090
commit 87a6e7dd7e
1 changed files with 2 additions and 1 deletions

View File

@ -1,10 +1,11 @@
import Vue, { Plugin } from 'vue';
import { ConfirmationOptions } from '../confirmationoptions';
declare const plugin: Plugin;
export default plugin;
interface ConfirmationServiceMethods {
require(options: any): any;
require(options: ConfirmationOptions): any;
close(): void;
}