Implement Headers.prototype.getSetCookie

This commit is contained in:
2shiori17 2023-03-05 00:52:19 +09:00
parent 9f98a1ed1a
commit 4ee3f575f6
3 changed files with 11 additions and 36 deletions

View file

@ -15,6 +15,7 @@ interface Headers {
undefined delete(ByteString name);
[Throws]
ByteString? get(ByteString name);
sequence<ByteString> getSetCookie();
[Throws]
boolean has(ByteString name);
[Throws]