Kfg Documentation
    Preparing search index...

    Type Alias Paths<T>

    Paths: T extends object
        ? {
            [K in keyof T]: K extends string
                ? T[K] extends ReadonlyArray<any>
                    ? K
                    : T[K] extends object ? `${K}.${Paths<T[K]>}` | K : K
                : never
        }[keyof T]
        : never

    Represents a path to a value in an object.

    Type Parameters

    • T

      The type of the object.