Typeutilsv0.8.6-next.0InternalPathToObjConverts a dot-notation path string into a nested object type with a specific leaf value. type PathToObj< Path extends string, Value > = Path extends `${infer Head}.${infer Tail}` ? { [K in Head]: PathToObj<Tail, Value> } : { [K in Path]: Value };Type parametersPathPath extends stringValueValue