···11-// Fork of `history` npm package
22-// Repository: github.com/remix-run/history
33-// Commit: 3e9dab413f4eda8d6bce565388c5ddb7aeff9f7e
11+// fork of `history` npm package
22+// repository: github.com/remix-run/history
33+// commit: 3e9dab413f4eda8d6bce565388c5ddb7aeff9f7e
4455-// Most of the changes are just trimming it down to only include the browser
55+// most of the changes are just trimming it down to only include the browser
66// history implementation.
7788import { DEV } from 'esm-env';
···7272export type To = string | Partial<Path>;
73737474/**
7575- * public interface for interacting with browser-like history.
7575+ * interface for interacting with the browser history.
7676 */
7777-export interface History {
7777+export interface BrowserHistory {
7878 readonly location: Location;
79798080 /**
···124124 replace?: boolean;
125125 state?: unknown;
126126}
127127-128128-/**
129129- * A browser history stores the current location in regular URLs in a web
130130- * browser environment. This is the standard for most web apps and provides the
131131- * cleanest URLs the browser's address bar.
132132- */
133133-export interface BrowserHistory extends History {}
134127135128const warning = (cond: unknown, message: string) => {
136129 if (DEV && !cond) {