Mappedin JS - v6.14.0
    Preparing search index...

    Type Alias LocationState

    The state of a location. Start and end dates are optional.

    type LocationState = {
        end?: string;
        start?: string;
        type:
            | "closed-temporarily"
            | "new"
            | "pop-up"
            | "coming-soon"
            | "relocated"
            | string;
    }
    Index

    Properties

    Properties

    end?: string

    The start date of the state

    date

    start?: string

    The start date of the state

    date

    type:
        | "closed-temporarily"
        | "new"
        | "pop-up"
        | "coming-soon"
        | "relocated"
        | string

    The type of the location state. Technically not limited, but should be one of the following:

    • closed-temporarily
    • new
    • pop-up
    • coming-soon
    • relocated