UNPKG

longurl-js

Version:

LongURL - Programmable URL management framework with entity-driven design and production-ready infrastructure

21 lines (20 loc) 416 B
/** * Supabase Adapter Types */ export interface SupabaseConfig { url: string; key: string; options?: { schema?: string; headers?: Record<string, string>; realTime?: { enabled: boolean; params?: Record<string, any>; }; cache?: { enabled?: boolean; ttlMs?: number; maxSize?: number; }; }; }