mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
[jquery] Fix error due to breaking change in TypeScript lib declarations.
This commit is contained in:
parent
83311151c9
commit
2506245210
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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user