From 8228324fb57b219ea440bed474a3d42bb755cc1d Mon Sep 17 00:00:00 2001 From: Rodney J Thomas Date: Sat, 9 Feb 2013 03:59:28 -0600 Subject: [PATCH] Fixed URI constructor Added additional constructor to URI. --- urijs/URI.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/urijs/URI.d.ts b/urijs/URI.d.ts index f54257f9d4..48220e68bb 100644 --- a/urijs/URI.d.ts +++ b/urijs/URI.d.ts @@ -16,6 +16,7 @@ interface URIOptions { declare class URI { constructor(); + constructor(uri: string); constructor(options: URIOptions); clone(): URI; href(): string;