fixed dependencies and errors

This commit is contained in:
unknown
2015-05-20 21:15:47 +02:00
parent e1210e5315
commit c0bb2b1798
2 changed files with 1610 additions and 1598 deletions
File diff suppressed because it is too large Load Diff
+8 -3
View File
@@ -4,17 +4,22 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface JasmineAjaxResponse {
status?: string;
status?: number;
statusText?: string;
responseText?: string;
response?: string;
responseType?: string;
contentType?: string;
responseHeaders?: { [key: string]: string };
}
interface JasmineAjaxRequest {
interface JasmineAjaxRequest extends XMLHttpRequest {
url: string;
method: string;
username: string;
password: string;
requestHeaders: { [key: string]: string };
overriddenMimeType: string;
respondWith(response: JasmineAjaxResponse): void;
}