@fkui/logic
    Preparing search index...

    Type Alias NestedKeys<T, Depth>

    NestedKeys: [Depth] extends [never]
        ? never
        : T extends object ? PathMap<T, Depth>[keyof T & ValidKey] : never

    Recursively generates a union of all dot-notation paths for object T.

    It uses PathMap to calculate paths for properties and then extracts the values using [keyof T].

    Type Parameters

    • T

      The object or array to inspect.

    • Depth extends number = 6

      The maximum recursion depth (defaults to 6).

    v6.38.0

    A union of string paths (e.g., "user" | "user.name").