@resistdesign/voltra
    Preparing search index...

    Type Alias HistoryLocation

    A normalized location entry in history.

    type HistoryLocation = {
        hash?: string;
        key: string;
        path: string;
        search?: string;
        state?: unknown;
    }
    Index

    Properties

    hash?: string

    Optional hash fragment (including leading #).

    key: string

    Stable entry key, unique per history entry.

    path: string

    Normalized pathname. Always starts with /.

    search?: string

    Optional query string (including leading ?).

    state?: unknown

    Optional app-defined state payload.