UNPKG

467 BTypeScriptView Raw
1import { Path, Location, LocationDescriptorObject } from './index';
2
3export function addLeadingSlash(path: Path): Path;
4export function stripLeadingSlash(path: Path): Path;
5export function hasBasename(path: Path): boolean;
6export function stripBasename(path: Path, prefix: string): Path;
7export function stripTrailingSlash(path: Path): Path;
8export function parsePath(path: Path): Location;
9export function createPath<S>(location: LocationDescriptorObject<S>): Path;