mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
16 lines
215 B
TypeScript
16 lines
215 B
TypeScript
import URLSearchParams = require("url-search-params");
|
|
|
|
const params = new URLSearchParams();
|
|
|
|
params.append("a", "1");
|
|
|
|
params.delete("a");
|
|
|
|
params.get("a");
|
|
|
|
params.has("a");
|
|
|
|
params.getAll();
|
|
|
|
params.toString();
|