mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 10:35:22 +08:00
* [history] update to v4.5 - move legacy history to v2 folder - fix dependent packages' package.json file to use legacy history v2 * [history] change dependents to support old history * [history] fix updated dependents
6 lines
378 B
TypeScript
6 lines
378 B
TypeScript
import { Path, LocationState, LocationKey, Location, LocationDescriptor } from './index';
|
|
|
|
export function locationsAreEqual(lv: LocationDescriptor, rv: LocationDescriptor): boolean;
|
|
export function createLocation(options: LocationDescriptor): Location;
|
|
export function createLocation(path: Path, state?: LocationState, key?: LocationKey, currentLocation?: Location): Location;
|