We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4aaa2e commit 15ce1eeCopy full SHA for 15ce1ee
1 file changed
projects/ngqp/core/src/lib/query-param-builder.service.ts
@@ -34,9 +34,17 @@ export class QueryParamBuilder {
34
}
35
36
/**
37
- * TODO Documentation
+ * Redirects to {@link stringParam}.
38
+ * @see stringParam
39
*/
40
public param(opts: QueryParamControlOptsInput<string>): QueryParamControl<string> {
41
+ return this.stringParam(opts);
42
+ }
43
+
44
+ /**
45
+ * TODO Documentation
46
+ */
47
+ public stringParam(opts: QueryParamControlOptsInput<string>): QueryParamControl<string> {
48
return new QueryParamControl({
49
serialize: DEFAULT_STRING_SERIALIZER,
50
deserialize: DEFAULT_STRING_DESERIALIZER,
0 commit comments