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
jquery/jquery.d.ts vendored
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>;