mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
12 lines
412 B
Plaintext
12 lines
412 B
Plaintext
// https://fetch.spec.whatwg.org/#body
|
|
interface mixin Body {
|
|
readonly attribute ReadableStream? body;
|
|
readonly attribute boolean bodyUsed;
|
|
[NewObject] Promise<ArrayBuffer> arrayBuffer();
|
|
[NewObject] Promise<Blob> blob();
|
|
[NewObject] Promise<Uint8Array> bytes();
|
|
[NewObject] Promise<FormData> formData();
|
|
[NewObject] Promise<any> json();
|
|
[NewObject] Promise<USVString> text();
|
|
};
|