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

Prettify

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]