Fixed issue of ConfirmationService.d.ts and ToastService.d.ts
parent
6648de2769
commit
bfdf90460a
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue