Update jquerymobile.d.ts

Added missing fields to the ParsedPath interface.
This commit is contained in:
Nimrodxx 2014-06-24 10:16:46 +02:00
parent 6f3946e020
commit e6be909842

View File

@ -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;