Install missing type file

pull/827/head
Cagatay Civici 2020-12-31 18:11:43 +03:00
parent 382bc7dabd
commit 3a20c598ab
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import Vue, { PluginFunction } from 'vue';
export const install: PluginFunction<{}>;
interface ConfirmationServiceMethods {
require(options: any): any;
close(): void;
}
declare module 'vue/types/vue' {
interface Vue {
$confirm: ConfirmationServiceMethods;
}
}