mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
fixed dependencies and errors
This commit is contained in:
+1602
-1595
File diff suppressed because it is too large
Load Diff
Vendored
+8
-3
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user