UNPKG

vue-3-supabase

Version:

Simple Vue 3 wrap for Supabase.js Client (v2) build with Vitejs

14 lines (10 loc) 344 B
import type { IVueSupabase } from "./@types"; import type { SupabaseClient } from "@supabase/supabase-js"; declare module "@vue/runtime-core" { interface ComponentCustomProperties { $supabase: IVueSupabase; } } export function useSupabase(): SupabaseClient; declare const supabasePlugin: IVueSupabase; export default supabasePlugin;