Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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];

§Type Parameters

§Type

§
T extends Function ? T : [K in keyof T]: T[K]
[src]