We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe9a3c0 + 7f43f8f commit 757f4d7Copy full SHA for 757f4d7
index.d.ts
@@ -1,7 +1,4 @@
1
-import Vue from 'vue'
2
-
3
import { SupabaseClient } from '@supabase/supabase-js'
4
5
declare module 'vue/types/vue' {
6
interface Vue {
7
$supabase: SupabaseClient
@@ -16,6 +13,4 @@ declare module 'vue/types/vue' {
16
13
*/
17
14
export function useSupabase(key?: string): SupabaseClient;
18
15
19
-export default {
20
- install(Vue: typeof Vue, options: any): void
21
-}
+export function install(Vue: any, options?: any): void;
0 commit comments