eligius
    Preparing search index...

    Interface IGetQueryParamsOperationData

    interface IGetQueryParamsOperationData {
        defaultValues?: Record<string, string>;
        queryParams?: Record<string, string>;
    }
    Index

    Properties

    defaultValues?: Record<string, string>

    The properties on this object will be assigned to the queryParams result when the given property name is not part of the query string.

    queryParams?: Record<string, string>

    The query params will be added as property/values to this object. So, the query string ?foo=bar&bar=foo will result in:

    {
    foo: "bar",
    bar: "foo"
    }

    This object will be assigned to the queryParams property.