Revert to temporary AbortSignal fix (#47643)

I forgot to keep the temporary fix when I updated the DOM yesterday.
This commit is contained in:
Nathan Shively-Sanders
2022-01-27 13:28:17 -08:00
committed by GitHub
parent e9092f3723
commit 61b7bbb026

View File

@@ -1903,7 +1903,7 @@ interface AbortSignal extends EventTarget {
declare var AbortSignal: {
prototype: AbortSignal;
new(): AbortSignal;
abort(reason?: any): AbortSignal;
// abort(): AbortSignal; - To be re-added in the future
};
interface AbstractRange {