[jquery] Fix error due to breaking change in TypeScript lib declarations.

This commit is contained in:
Leonard Thieu 2018-06-16 14:55:01 -04:00
parent 83311151c9
commit 2506245210

View File

@ -6361,7 +6361,9 @@ declare namespace JQuery {
};
// Writable properties on XMLHttpRequest
interface XHRFields extends Partial<Pick<XMLHttpRequest, 'onreadystatechange' | 'responseType' | 'timeout' | 'withCredentials' | 'msCaching'>> { }
interface XHRFields extends Partial<Pick<XMLHttpRequest, 'onreadystatechange' | 'responseType' | 'timeout' | 'withCredentials'>> {
msCaching?: string;
}
}
interface Transport {