mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
16 lines
466 B
Text
16 lines
466 B
Text
interface URLSearchParams {
|
|
|
|
constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = "");
|
|
|
|
undefined append(USVString name, USVString value);
|
|
undefined delete(USVString name);
|
|
USVString? get(USVString name);
|
|
sequence<USVString> getAll(USVString name);
|
|
boolean has(USVString name);
|
|
undefined set(USVString name, USVString value);
|
|
|
|
undefined sort();
|
|
|
|
iterable<USVString, USVString>;
|
|
stringifier;
|
|
};
|