Merge pull request #2400 from Nimrodxx/master

Update jquerymobile.d.ts and jquery.d.ts
This commit is contained in:
Basarat Ali Syed
2014-07-01 23:02:06 +10:00
2 changed files with 14 additions and 1 deletions
+5
View File
@@ -364,6 +364,11 @@ interface JQueryPromise<T> {
*/
progress(...progressCallbacks: any[]): JQueryPromise<T>;
/**
* Determine the current state of a Deferred object.
*/
state(): string;
// Deprecated - given no typings
pipe(doneFilter?: (x: any) => any, failFilter?: (x: any) => any, progressFilter?: (x: any) => any): JQueryPromise<any>;
+9 -1
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;