Files
DefinitelyTyped/js-url/js-url.d.ts
Bart van der Schoor 1d345f6c14 cleaned-up headers
2014-06-18 23:31:11 +02:00

15 lines
433 B
TypeScript

// Type definitions for url v1.8.6
// Project: https://github.com/websanova/js-url
// Definitions by: MIZUNE Pine <https://github.com/pine613>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface UrlStatic {
(): string;
(pattern: string): string;
(pattern: number): string;
(pattern: string, url: string): string;
(pattern: number, url: string): string;
}
declare var url: UrlStatic;