/** * All possible page types from a store. * * @export * @enum {string} */ export enum PageType { Home = "home", Product = "product", ProductUnavailable = "product_unavailable", Category = "category", EmptyCategory = "empty_category", Campaign = "campaign", Search = "search", SearchEmpty = "search_empty", Cart = "cart", Checkout = "checkout", Confirmation = "confirmation", OrderList = "order_list", OrderDetail = "order_detail", Other = "other", EmptyCart = "empty_cart", Department = "department", }