Allow string array in extraParams type

This commit is contained in:
shamoon
2026-06-06 16:10:52 -07:00
parent 4f1544a0bb
commit 6be2138d6d
+1 -1
View File
@@ -88,7 +88,7 @@ export class TasksService {
public list(
page: number,
pageSize: number,
extraParams?: Record<string, string | number | boolean>
extraParams?: Record<string, string | number | boolean | readonly string[]>
): Observable<Results<PaperlessTask>> {
return this.http.get<Results<PaperlessTask>>(
`${this.baseUrl}${this.endpoint}/`,