Fixed issue of ConfirmationService.d.ts and ToastService.d.ts

pull/1595/head
YiChun Sung 2021-09-23 01:52:31 +08:00
parent 6648de2769
commit bfdf90460a
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,7 @@
import Vue, { PluginFunction } from 'vue';
import Vue, { Plugin } from 'vue';
export const install: PluginFunction<{}>;
declare const plugin: Plugin;
export default plugin;
interface ConfirmationServiceMethods {
require(options: any): any;

View File

@ -1,6 +1,7 @@
import Vue, { PluginFunction } from 'vue';
import Vue, { Plugin } from 'vue';
export const install: PluginFunction<{}>;
declare const plugin: Plugin;
export default plugin;
interface ToastServiceMethods {
add(message: any): any;