import { type Deep } from "https://deno.land/x/rimbu@0.13.5/deep/index.ts";
const { NonEmpty } = Deep.Path.Internal;
Determines the allowed non-empty paths into a value of type T
.
definition: Path.Internal.IsOptional<T> extends true ? Write extends false ? Path.Internal.Generic<Exclude<T, undefined | null>, Write, true> : never : `${Path.Internal.Separator<First, Maybe, IsArray<T>>}${Path.Internal.NonOptional<T, Write, Maybe>}`