Prettify
import type { Prettify } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";Resolve mapped types and show the derived keys and their types when hovering in VS Code, instead of just showing the names those mapped types are defined with.
type Prettify<T> = T extends Function ? T : [K in keyof T]: T[K];