Skip to content

Commit

Permalink
Fixed issue of ConfirmationService.d.ts and ToastService.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
yichunsung committed Sep 22, 2021
1 parent 6648de2 commit bfdf904
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/components/confirmationservice/ConfirmationService.d.ts
@@ -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;
Expand Down
5 changes: 3 additions & 2 deletions src/components/toastservice/ToastService.d.ts
@@ -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;
Expand Down

0 comments on commit bfdf904

Please sign in to comment.