MVFv3 API Documentation
    Preparing search index...

    Type Alias UnknownEntranceAestheticProperties

    An entrance aesthetic that is not one of the above. This is typically not normal, but is used to indicate that this type of entrance aesthetic is not one recognized by the producer or consumer of the MVF. An application should handle an unknown entrance aesthetic as a case and not crash, though it is up to the application to decide whether to display a generic entrance aesthetic or filter them out.

    type UnknownEntranceAestheticProperties = {
        id: `ea_${string}`;
        geometryId: `g_${string}`;
        details?: {
            description?: string;
            externalId?: string;
            icon?: string;
            name?: string;
            shortName?: string;
        };
        swing?: "cw"
        | "acw"
        | "unknown";
        swingOrigin?: number;
        kind: "open" | "single" | "double" | "unknown";
    }
    Index

    Properties

    id: `ea_${string}`

    The unique identifier for the entrance aesthetic.

    geometryId: `g_${string}`
    details?: {
        description?: string;
        externalId?: string;
        icon?: string;
        name?: string;
        shortName?: string;
    }

    {@inheritDoc utility-types/details!Details}

    swing?: "cw" | "acw" | "unknown"
    swingOrigin?: number
    kind: "open" | "single" | "double" | "unknown"