mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
9 lines
238 B
Plaintext
9 lines
238 B
Plaintext
#import <DOM/AbortSignal.idl>
|
|
|
|
// https://streams.spec.whatwg.org/#writablestreamdefaultcontroller
|
|
[Exposed=*]
|
|
interface WritableStreamDefaultController {
|
|
readonly attribute AbortSignal signal;
|
|
undefined error(optional any e);
|
|
};
|