manually update webworker to remove AbortSignal.abort (#48580)

This commit is contained in:
Nathan Shively-Sanders
2022-04-05 17:08:17 -07:00
committed by GitHub
parent 76e74370ab
commit 16b6f0f533

View File

@@ -703,7 +703,7 @@ interface AbortController {
/** Returns the AbortSignal object associated with this object. */
readonly signal: AbortSignal;
/** Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted. */
abort(reason?: any): void;
// abort(): AbortSignal; - To be re-added in the future
}
declare var AbortController: {