On this pageMapLeafNodes<Obj, LeafType> MapLeafNodes<Obj, LeafType> = { [Prop in keyof Obj]: Obj[Prop] extends Primitive ? LeafType : Obj[Prop] extends Record<string | number, unknown> ? MapLeafNodes<Obj[Prop], LeafType> : never } Type Parameters Obj Obj LeafType LeafType