Skip to content

Commit

Permalink
history: Update PathUtils for 4.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo Franco committed Jun 21, 2017
1 parent a3af39b commit dfe6809
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion types/history/PathUtils.d.ts
Expand Up @@ -2,6 +2,8 @@ import { Path, Location, LocationDescriptorObject } from './index';

export function addLeadingSlash(path: Path): Path;
export function stripLeadingSlash(path: Path): Path;
export function stripPrefix(path: Path, prefix: string): Path;
export function hasBasename(path: Path): boolean;
export function stripBasename(path: Path, prefix: string): Path;
export function stripTrailingSlash(path: Path): Path;
export function parsePath(path: Path): Location;
export function createPath(location: LocationDescriptorObject): Path;

0 comments on commit dfe6809

Please sign in to comment.