Skip to content

Commit

Permalink
Fixing types
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Apr 20, 2023
1 parent 52bc8f7 commit 8d0a540
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Plugin, Ref } from 'vue';

import { Client } from '@/Client';

export type InstallFunction = Plugin & { installed?: boolean; wampClient?: Client };
export type InstallFunction = Plugin & { installed?: boolean; wampClient?: IWampClient };

export type OnOpenCallback = () => void;
export type OnCloseCallback = (code: number, reason: string | null) => void;
Expand Down

0 comments on commit 8d0a540

Please sign in to comment.