UNPKG

supakit

Version:

A Supabase auth helper for SvelteKit.

9 lines (8 loc) 305 B
import type { Session } from '@supabase/supabase-js'; export declare class CookieStorage { private readonly session; constructor(session: Session | null); getItem(key: string): Promise<any>; setItem(key: string, value: string): Promise<void>; removeItem(key: string): Promise<void>; }