PerformanceNavigation
deprecatedThe 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: {
prototype: PerformanceNavigation;
readonly TYPE_BACK_FORWARD: number;
readonly TYPE_NAVIGATE: number;
readonly TYPE_RELOAD: number;
readonly TYPE_RESERVED: number;
new (): PerformanceNavigation;
};