Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias ExpandRecursively
import { type ExpandRecursively } from "https://deno.land/std@0.220.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