@yamlresume/core
    Preparing search index...

    Type Alias WorkItem

    Represents a single work experience or employment position.

    WorkItemSchema for its schema constraints.

    type WorkItem = {
        computed?: {
            dateRange: string;
            endDate: string;
            keywords: string;
            startDate: string;
            summary: string;
        };
        endDate?: string;
        keywords?: Keywords;
        name: string;
        position: string;
        startDate: string;
        summary: string;
        url?: string;
    }
    Index
    computed?: {
        dateRange: string;
        endDate: string;
        keywords: string;
        startDate: string;
        summary: string;
    }

    Computed values derived during transformation.

    Type Declaration

    • dateRange: string

      Combined string representing the date range.

    • endDate: string

      Transformed end date string (or "Present").

    • keywords: string

      Transformed keywords string.

    • startDate: string

      Transformed start date string.

    • summary: string

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

    endDate?: string

    End date of employment (e.g., "2023", "Aug 2023").

    keywords?: Keywords

    Keywords related to the role or technologies used.

    name: string

    Name of the company or employer.

    position: string

    Job title or position held.

    startDate: string

    Start date of employment (e.g., "2021", "Apr 2021").

    summary: string

    Summary of responsibilities and accomplishments.

    url?: string

    URL related to the company or work.