1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:27:34 +00:00

LibWeb/Fetch: Add duplex property to Request

This is a change in the Fetch spec.

See: 1fbc40c
This commit is contained in:
Linus Groh 2022-10-15 00:41:10 +02:00
parent 60e9790a40
commit 5995a9fd06
3 changed files with 10 additions and 0 deletions

View file

@ -26,6 +26,7 @@ interface Request {
readonly attribute boolean isReloadNavigation;
readonly attribute boolean isHistoryNavigation;
readonly attribute AbortSignal signal;
readonly attribute RequestDuplex duplex;
[NewObject] Request clone();
};