1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibWeb: Implement 'Byte sequence as body' AO

This commit is contained in:
Linus Groh 2022-10-30 14:39:32 +00:00
parent dcded8d39f
commit cc6eaafe6b
2 changed files with 11 additions and 0 deletions

View file

@ -54,4 +54,6 @@ struct BodyWithType {
Optional<ByteBuffer> type;
};
WebIDL::ExceptionOr<Body> byte_sequence_as_body(JS::Realm&, ReadonlyBytes);
}