Action
Actions represent the type of change to a location value.
enum Action { }
Pop = "POP",
Push = "PUSH",
Replace = "REPLACE",
§Members
§
Action.Pop = "POP"
[src]A POP indicates a change to an arbitrary index in the history stack, such as a back or forward navigation. It does not describe the direction of the navigation, only that the current index changed.
Note: This is the default action for newly created history objects.