@conciergus/chat - v0.3.1
    Preparing search index...

    Type Alias Paths<T>

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

    Create a union of all possible paths through an object

    Type Parameters

    • T