getScopedParams function parses the URL of a Request and returns a URLSearchParams object. If a scope is provided, it extracts only the parameters that belong to that scope (prefixed with scope[key]).ts
import { getScopedParams } from "@arkyn/server";
Request): The request object.string, optional): The scope to filter the parameters.URLSearchParams): A URLSearchParams object containing the filtered parameters.