Files
DefinitelyTyped/js-url/js-url.d.ts
MIZUNE Pine 3963c4498b Add url
2014-04-26 10:37:50 +09:00

15 lines
435 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;