Merge pull request #1595 from yichunsung/bugfix/fix-vue-Plugin-issue
Fixed #1596 : Typescript `Plugin` issue of `ConfirmationService.d.ts` and `ToastService.d.ts`pull/1643/head
commit
2a5f2422a9
|
@ -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