Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PopStateEvent

PopStateEvent is an event handler for the popstate event on the window.

interface PopStateEvent extends Event {
readonly state: any;
}
var PopStateEvent: {
prototype: PopStateEvent;
new (type: string, eventInitDict?: PopStateEventInit): PopStateEvent;
}
;

§Extends

§Properties

§
readonly state: any
[src]

Returns a copy of the information that was provided to pushState() or replaceState().