Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
type alias ExpandRecursively
import { type ExpandRecursively } from "https://deno.land/std@0.222.1/collections/mod.ts";

Force intellisense to expand the typing to hide merging typings

definition: T extends Record<PropertyKey, unknown> ? T extends infer O ? [K in keyof O]: ExpandRecursively<O[K]> : never : T