Plumile JS API
    Preparing search index...

    Type Alias HistoryLocation

    Represents a location for history navigation. This is a subset of the browser's Location interface.

    type HistoryLocation = {
        debugContext?: HistoryDebugContext;
        hash?: string;
        pathname: string;
        search?: string;
    }
    Index

    Properties

    debugContext?: HistoryDebugContext

    Optional debug metadata propagated through navigation events

    hash?: string

    URL hash (fragment identifier)

    pathname: string

    URL pathname

    search?: string

    URL search parameters