A type that represents HTTP request URL parameters.

Since

2023.1

interface HttpRequestParameters {
    [parameterName: string]: string | number | boolean | null | undefined;
}

Indexable

[parameterName: string]: string | number | boolean | null | undefined