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

BeforeUnloadEvent

The beforeunload event is fired when the window, the document and its resources are about to be unloaded.

interface BeforeUnloadEvent extends Event {
returnValue: any;
}
var BeforeUnloadEvent: {
prototype: BeforeUnloadEvent;
}
;

§Extends

§Properties

§
returnValue: any
[src]