Expose the response property on XMLHttpRequest in the d.ts file

This commit is contained in:
Hristo Deshev
2015-06-30 17:40:28 +03:00
parent b8637a76fc
commit 2e96a8382d

1
declarations.d.ts vendored
View File

@ -36,6 +36,7 @@ declare class XMLHttpRequest {
getResponseHeader(header: string): string;
overrideMimeType(mime: string): void;
readyState: number;
response: any;
responseText: string;
responseType: string;
status: number;