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

MemoryHistory

A memory history stores locations in memory. This is useful in stateful environments where there is no web browser, such as node tests or React Native.

interface MemoryHistory extends History {
readonly index: number;
}

§Extends

§Properties

§
readonly index: number
[src]

The current index in the history stack.