Install missing type file
parent
382bc7dabd
commit
3a20c598ab
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue