@webdeveric/utils
    Preparing search index...

    Type Alias Path<Type>

    Path: PathDotNotation<NonNullableProperties<Type>, keyof Type> | ValidKeys<Type>

    Get the valid keys and dot notations for a given Type.

    Type Parameters

    • Type extends object
    type ExampleNotation = Path<{
    job: {
    title: string;
    }
    }>;

    Equals:

    type ExampleNotation = "job" | "job.title";