From e6be909842df820f2b3d9bffecb29b3b454d64ca Mon Sep 17 00:00:00 2001 From: Nimrodxx Date: Tue, 24 Jun 2014 10:16:46 +0200 Subject: [PATCH] Update jquerymobile.d.ts Added missing fields to the ParsedPath interface. --- jquerymobile/jquerymobile.d.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/jquerymobile/jquerymobile.d.ts b/jquerymobile/jquerymobile.d.ts index ebcaac48fa..f07c73fc34 100644 --- a/jquerymobile/jquerymobile.d.ts +++ b/jquerymobile/jquerymobile.d.ts @@ -335,17 +335,25 @@ interface JQueryMobilePath { } interface ParsedPath { + authority: string; + directory: string; + domain: string; + doubleSlash: string; + filename: string; hash: string; host: string; hostname: string; href: string; + hrefNoHash: string; + hrefNoSearch: string; + password: string; pathname: string; port: string; protocol: string; search: string; + username: string; } - interface JQueryMobile extends JQueryMobileOptions { version: string;