From 8d0a540ebe53f5b76c52f42b17a4caf418893176 Mon Sep 17 00:00:00 2001 From: Adam Kadlec Date: Thu, 20 Apr 2023 22:30:47 +0200 Subject: [PATCH] Fixing types --- src/types/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/types/index.ts b/src/types/index.ts index da37d8e..ff0849b 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -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;