mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 08:17:54 +08:00
13 lines
552 B
TypeScript
13 lines
552 B
TypeScript
// Type definitions for url-join v0.8.3
|
|
// Project: https://github.com/jfromaniello/url-join
|
|
// Definitions by: Rogier Schouten <https://github.com/rogierschouten>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/**
|
|
* Join all arguments together and normalize the resulting url.
|
|
* This works similar to path.join but you shouldn't use path.join for urls since it will work different depending of the operative systems but also doesn't work for some cases.
|
|
*/
|
|
declare function urljoin(...parts: string[]): string;
|
|
|
|
export = urljoin;
|