Type Alias LocationState

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

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

Type declaration

  • Optionalend?: string

    The start date of the state

    date

  • Optionalstart?: 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