feat(ext/web): WritableStreamDefaultController.signal (#12654)

This commit is contained in:
Leo Kettmeir 2021-11-08 12:54:24 +01:00 committed by GitHub
parent 8e010b6844
commit c91da1222b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 35 deletions

View file

@ -635,6 +635,7 @@ declare var WritableStream: {
* sink is given a corresponding WritableStreamDefaultController instance to
* manipulate. */
interface WritableStreamDefaultController {
signal: AbortSignal;
error(error?: any): void;
}