enforce values as string[] instead of any

Signed-off-by: Kashish Mittal <kmittal@redhat.com>
This commit is contained in:
Kashish Mittal
2025-05-09 15:22:19 -04:00
parent d2b8e6e461
commit e161cf1043
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ export type TaskBrokerDispatchOptions = {
*/
export type TaskFilter = {
key: string;
values?: Array<string> | undefined;
values?: string[];
};
/**