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

PerformanceNavigation

deprecated

The legacy PerformanceNavigation interface represents information about how the navigation to the current document was done.

@deprecated

This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.

interface PerformanceNavigation {
readonly redirectCount: number;
readonly type: number;
readonly TYPE_BACK_FORWARD: number;
readonly TYPE_NAVIGATE: number;
readonly TYPE_RELOAD: number;
readonly TYPE_RESERVED: number;
toJSON(): any;
}
var PerformanceNavigation: {
readonly TYPE_BACK_FORWARD: number;
readonly TYPE_NAVIGATE: number;
readonly TYPE_RELOAD: number;
readonly TYPE_RESERVED: number;
}
;

§Properties

§
readonly redirectCount: number
[src]
§
readonly type: number
[src]
§
readonly TYPE_BACK_FORWARD: number
[src]
§
readonly TYPE_NAVIGATE: number
[src]
§
readonly TYPE_RELOAD: number
[src]
§
readonly TYPE_RESERVED: number
[src]

§Methods

§
toJSON(): any
[src]