mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-01 19:24:27 +00:00
[jquery] Fix error due to breaking change in TypeScript lib declarations.
This commit is contained in:
4
types/jquery/index.d.ts
vendored
4
types/jquery/index.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user