UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

15 lines (12 loc) 423 B
// 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/DefinitelyTyped/DefinitelyTyped interface UrlStatic { (): string; (pattern: string): string; (pattern: number): string; (pattern: string, url: string): string; (pattern: number, url: string): string; } declare var url: UrlStatic;