Made tests pass for 'jqueryui'.

This commit is contained in:
Daniel Rosenwasser
2015-08-17 15:04:54 -07:00
parent 379748b491
commit b51f8765a3
3 changed files with 59 additions and 39 deletions
+4
View File
@@ -185,6 +185,10 @@ interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> {
* Property containing the parsed response if the response Content-Type is json
*/
responseJSON?: any;
/**
* A function to be called if the request fails.
*/
error(xhr: JQueryXHR, textStatus: string, errorThrown: string): void;
}
/**