@yamlresume/core
    Preparing search index...

    Type Alias LocationItem

    Represents location and address information.

    LocationItemSchema for its schema constraints.

    type LocationItem = {
        address?: string;
        city: string;
        computed?: { fullAddress: string };
        country?: Country;
        postalCode?: string;
        region?: string;
    }
    Index
    address?: string

    Street address.

    city: string

    City name.

    computed?: { fullAddress: string }

    Computed values derived during transformation.

    Type Declaration

    • fullAddress: string

      Fully formatted address string based on locale.

    country?: Country

    Country code or name.

    postalCode?: string

    Postal or ZIP code.

    region?: string

    State, province, or region.