type Obj<T,Write,Maybe>
Determines the allowed paths for an object.
Definition
type Obj<T, Write extends boolean, Maybe extends boolean> = ```{
[K in keyof T]:
${K & string}${[`Path.Internal.Generic`](/api/rimbu/deep/Path/Internal/Generic/type)`<T[K], Write, Write extends true ? false : `[`Path.Internal.IsOptional`](/api/rimbu/deep/Path/Internal/IsOptional/type)
<T[K], true, Maybe>>};
}[keyof T]```;