@yamlresume/core
    Preparing search index...

    Type Alias BasicsItem

    Represents the core personal and contact information.

    BasicsItemSchema for its schema constraints.

    type BasicsItem = {
        computed?: { summary: string; url: string };
        email?: string;
        headline?: string;
        name: string;
        phone?: string;
        summary?: string;
        url?: string;
    }
    Index
    computed?: { summary: string; url: string }

    Computed values derived during transformation.

    Type Declaration

    • summary: string

      Transformed summary string (e.g., LaTeX code).

    • url: string

      Transformed URL string (e.g., LaTeX href command).

    email?: string

    Email address.

    headline?: string

    A brief professional headline or title (e.g., "Software Engineer").

    name: string

    Full name.

    phone?: string

    Phone number.

    summary?: string

    A professional summary or objective statement.

    url?: string

    Personal website or portfolio URL.