Preparing search index...

    Interface House

    interface House {
        keywords: string | string[];
        number: number;
        rulingPlanet: string;
        sign: string;
        title: string;
        [key: string]: any;
    }

    Hierarchy

    • Record<string, any>
      • House

    Indexable

    • [key: string]: any
    Index

    Properties

    keywords: string | string[]

    Representative keywords. Fundamental concepts associated. Example: ['Self-image', 'Identity', 'Impressions on others', 'Personality'].

    number: number

    Number of the astrological house (1-12). Represents different areas of life experience. Example: House 1 (The individual personality), House 7 (Relating).

    rulingPlanet: string

    Ruling planet of the house. Indicates the dominant planetary influence. Example: "Mars", "Venus".

    sign: string

    Zodiac sign associated with this house. Represents the natural energy of the house. Example: "Aries", "Taurus".

    title: string

    Descriptive title of the house. Provides an official or formal name representing the area of life it governs. Examples: "The individual personality", "Values and Possessions".